z80_unpacker: initial working version with screen-slideshow example

This commit is contained in:
Peter Helcmanovsky (Ped)
2022-09-13 22:12:03 +02:00
parent f1f1c64a76
commit 7b051113e1
13 changed files with 393 additions and 0 deletions

11
z80_unpacker/Makefile Normal file
View File

@@ -0,0 +1,11 @@
all: unpack.bin example/example.sna
# binary is positioned from ORG 0, not usable, just assembling to verify the syntax
unpack.bin: unpack.asm
sjasmplus --msg=war --lst --lstlab=sort --raw=unpack.bin unpack.asm
example/example.sna: unpack.asm example/example.asm
cd example && sjasmplus --msg=war --lst --lstlab=sort example.asm
clean:
$(RM) unpack.bin unpack.lst example/example.sna example/example.lst