Initial commit.

This commit is contained in:
Eric Smith 2018-04-08 00:40:52 -06:00
commit 4332358b7b
3 changed files with 1348 additions and 0 deletions

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
*~
*.bin
*.lst
*.p
*.dsk
*.po

25
Makefile Normal file
View File

@ -0,0 +1,25 @@
all: a3a2em-check
%.lst %.p: %.asm
asl $< -o $@ -L
a3a2em.po: a3a2em.dsk
reinterleave do a3a2em.dsk po a3a2em.po
a3a2em-orig.bin: a3a2em.po
dd if=a3a2em.po of=a3a2em-orig.bin bs=256 count=24
a3a2em.bin: a3a2em.p
p2bin -r '$$a000-$$b7ff' a3a2em.p
a3a2em-check: a3a2em.bin
echo "a6e3d7330dd286e30cae1bb8ee1b3bee8161f33172006a3d320715fd6454fd51 a3a2em.bin" | sha256sum -c -
#a3a2em.asm: a3a2em-orig.bin
# dis6502 -a -r 0xa000 -7 -e 0xa000 -e 0xa379 a3a2em-orig.bin >a3a2em.asm
a3a2em.dis: a3a2em-orig.bin
dis6502 -r 0xa000 -7 -e 0xa000 -e 0xa379 -e 0xa39f a3a2em-orig.bin >a3a2em.dis
clean:
rm a3a2em.bin *.p *.lst

1317
a3a2em.asm Normal file

File diff suppressed because it is too large Load Diff