initial import
This commit is contained in:
commit
ad589d2894
26 changed files with 2241 additions and 0 deletions
19
utils/Makefile
Normal file
19
utils/Makefile
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
.PHONY: all clean
|
||||
.SUFFIXES: .tal .rom
|
||||
|
||||
all: uxnmin drifloon.rom opctest.rom
|
||||
clean:
|
||||
rm -f uxnmin drifloon.rom opctest.rom
|
||||
|
||||
uxnmin: uxnmin.c
|
||||
drifloon.rom: uxnmin
|
||||
xxd -r -p drifloon.rom.txt drifloon-seed.rom
|
||||
./uxnmin drifloon-seed.rom < drifloon.tal > drifloon.rom
|
||||
cmp drifloon.rom drifloon-seed.rom
|
||||
rm drifloon-seed.rom
|
||||
|
||||
.tal.rom:
|
||||
sh assemble.sh $< $@
|
||||
|
||||
#opctest.rom: uxnmin drifloon.rom opctest.tal
|
||||
# ./uxnmin drifloon.rom < opctest.tal > opctest.rom
|
||||
Loading…
Add table
Add a link
Reference in a new issue