nand2/07_Operating_System/08_StdIO_Test/Makefile

21 lines
418 B
Makefile
Raw Permalink Normal View History

2023-08-04 14:44:31 +00:00
PYTHON = python3.11
2023-01-11 10:13:09 +00:00
all: jack vm asm bin sim
jack:
2023-08-04 14:44:31 +00:00
$(PYTHON) ../../tools/JackCompiler/JackCompiler.pyc ./
2023-01-11 10:13:09 +00:00
vm:
2023-08-04 14:44:31 +00:00
$(PYTHON) ../../tools/VMTranslator/VMTranslator.pyc ./
2023-01-11 10:13:09 +00:00
asm:
2023-08-04 14:44:31 +00:00
$(PYTHON) ../../tools/Assembler/assembler.pyc out.asm
2023-01-11 10:13:09 +00:00
bin:
2023-08-04 14:44:31 +00:00
$(PYTHON) ../../tools/AsciiToBin.py out.hack
2023-01-11 10:13:09 +00:00
sim:
cp out.hack ../00_HACK/ROM.hack
upload:
iceprogduino -o 64k -w out.bin
clean:
rm -f *.vm *.asm *.hack *.bin *~
.PHONY: all clean