Initial commit.

This commit is contained in:
Eric Smith 2021-04-03 18:51:52 -06:00
commit 99f1679255
3 changed files with 2008 additions and 0 deletions

9
.gitignore vendored Normal file
View File

@ -0,0 +1,9 @@
\#*
.#*
*~
*.bin
*.bin.orig
*.p
*.lst
*.dis
old

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
all: check
%.p %.lst: %.asm
asl -cpu 6502 -L $<
%.bin: %.p
p2bin -r '$$c000-$$dfff' $<
check: ramfactor14.bin
echo '3369e5e9838db52df7924e79e65451267953172390d30308a28c688a886989ce ramfactor14.bin' | sha256sum -c

1989
ramfactor14.asm Normal file

File diff suppressed because it is too large Load Diff