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

15 lines
379 B
Makefile

leds:
../tools/Assembler/assembler.pyc leds.asm
cp leds.hack ../05_Computer_Architecture/04_HACK/ROM.hack
mult:
../tools/Assembler/assembler.pyc mult.asm
cp mult.hack ../05_Computer_Architecture/04_HACK/ROM.hack
upload:
../tools/Assembler/assembler.pyc leds.asm
../tools/AsciiToBin.py leds.hack
iceprogduino -o 64k -w leds.bin
clean:
rm -f *.hack *~ *.bin
.PHONY: clean