1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2026-04-24 11:16:38 +00:00

added skeleton files

This commit is contained in:
Steven Hugg
2017-04-19 14:26:46 -04:00
parent 89c3209f09
commit 1ca9d50801
10 changed files with 508 additions and 7 deletions
+1
View File
@@ -6,6 +6,7 @@ parser = argparse.ArgumentParser()
parser.add_argument('-l', '--length', type=int, default=64, help="length of note table")
parser.add_argument('-u', '--upper', type=int, default=49, help="upper note # to test")
parser.add_argument('-f', '--freq', type=float, default=3579545/32.0, help="base frequency (Hz)")
parser.add_argument('-b', '--bias', type=float, default=0, help="divisor bias")
args = parser.parse_args()
test_notes = args.upper
+1 -1
View File
@@ -1,5 +1,5 @@
all: baddies.c badspacerobots.tga tom-thumb.c
all: baddies.c badspacerobots.tga tom-thumb.c swave.c.rom.h
%.h: %
cat $* | hexdump -v -e '"\n" 128/1 "0x%02x,"' > $@
Binary file not shown.