14 lines
215 B
Makefile
14 lines
215 B
Makefile
PYTHON = ~/.pyenv/shims/python
|
|
NAME = boot
|
|
|
|
all: asm install
|
|
|
|
asm:
|
|
$(PYTHON) ../../tools/Assembler/assembler.pyc $(NAME).asm
|
|
install:
|
|
cp $(NAME).hack ../00_HACK/ROM.hack
|
|
clean:
|
|
rm -f *.hack *~
|
|
|
|
.PHONY: all clean
|