15 lines
		
	
	
		
			210 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			210 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
PYTHON = /bin/python3.11
 | 
						|
 | 
						|
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
 |