nand2/06_IO_Devices/03_SPI/Makefile
Michael Schröder 971b323822 added v2.0
2023-01-11 23:04:57 +01:00

13 lines
173 B
Makefile

NAME = cat
all: asm install
asm:
../../tools/Assembler/assembler.pyc $(NAME).asm
install:
cp $(NAME).hack ../00_HACK/ROM.hack
clean:
rm -f *.hack *~
.PHONY: all clean