mirror of
https://github.com/brouhaha/a2-liron.git
synced 2025-01-18 03:29:59 +00:00
Initial commit.
This commit is contained in:
commit
3f1f2420a8
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
*~
|
||||
*.p
|
||||
*.bin
|
||||
*.lst
|
20
Makefile
Normal file
20
Makefile
Normal file
@ -0,0 +1,20 @@
|
||||
all: liron-if.bin liron-if.lst check
|
||||
|
||||
%.lst %.p: %.asm
|
||||
asl $< -o $@ -L
|
||||
|
||||
liron-if.p liron-if.lst: liron-if.asm
|
||||
asl liron-if.asm -o liron-if.p -L
|
||||
|
||||
liron-if.bin: liron-if.p
|
||||
p2bin -r '$$c000-$$cfff' liron-if.p
|
||||
|
||||
define myvar
|
||||
# line 1\nline 2\nline 3\n#etc\n
|
||||
endef
|
||||
|
||||
check: liron-if.bin
|
||||
echo "42c1ae66c6bec932669239599eb8989a5364752d56fa5c8997bb23d8dfc0b657 liron-if.bin" | sha256sum -c -
|
||||
|
||||
clean:
|
||||
rm liron-if.bin *.p *.lst
|
1241
liron-if.asm
Normal file
1241
liron-if.asm
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user