aboutsummaryrefslogtreecommitdiffstats
path: root/atk16_projects/monitor_proto/Makefile
blob: 0ef6d33423ba0b912960aa6dac578e9dba7645d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
EMULATOR = atk16emu
ASSEMBLER = atk16c
PROJ = monitor_proto

out/$(PROJ).bin: $(PROJ).atk16
	$(ASSEMBLER) $< -o out/$(PROJ).bin

###

@PHONY: run
run: out/$(PROJ).bin
	$(EMULATOR) $<

@PHONY: debug
debug: out/$(PROJ).bin
	$(EMULATOR) -d $<