mirror of
https://github.com/brouhaha/a1basic.git
synced 2024-11-23 02:33:45 +00:00
Add Makefile and gitignore.
This commit is contained in:
parent
4f6fccbe20
commit
ec59005015
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
*~
|
||||
*.p
|
||||
*.bin
|
||||
*.lst
|
11
Makefile
Normal file
11
Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
all: a1basic-check
|
||||
|
||||
%.lst %.p: %.asm
|
||||
asl $< -o $*.p -LC
|
||||
|
||||
a1basic.bin: a1basic.p
|
||||
p2bin -r '$$e000-$$efff' a1basic.p a1basic.bin
|
||||
|
||||
a1basic-check: a1basic.bin
|
||||
echo "56d5cd968557c81a99cde298d76030f65bb7ce9a85bc2ff0fed5726d50b91499 a1basic.bin" | sha256sum -c -
|
||||
|
Loading…
Reference in New Issue
Block a user