From 7ca56c1a730fcecd0fe3af5e6b652fa09514a18b Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Fri, 26 Apr 2024 15:40:14 +0300 Subject: Refactor project structure, add README and LICENSE --- atk16_projects/monitor_proto/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 atk16_projects/monitor_proto/Makefile (limited to 'atk16_projects/monitor_proto/Makefile') diff --git a/atk16_projects/monitor_proto/Makefile b/atk16_projects/monitor_proto/Makefile new file mode 100644 index 0000000..0ef6d33 --- /dev/null +++ b/atk16_projects/monitor_proto/Makefile @@ -0,0 +1,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 $< -- cgit v1.3