1
0
mirror of https://github.com/fruit-bat/pico-zxspectrum.git synced 2025-04-17 12:57:03 +03:00

hid host lib

This commit is contained in:
Phil 2024-09-29 14:31:42 +01:00
parent ed077de871
commit 2667e0052e
2 changed files with 6 additions and 0 deletions

1
.gitignore vendored
View File

@ -2,4 +2,5 @@
jsw.h
ljm.h
build*/**
temp*/**
.vscode

5
comb_uf2.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
mkdir -p temp_uf2
rm -rf temp_uf2/*
find build-* -name '*.uf2' -execdir bash -c "cat {} >> $PWD/temp_uf2/{}" \;