From 779b9834e30de1ba0b4f0755388bebd0c45aa1dc Mon Sep 17 00:00:00 2001 From: Thomas Albers Raviola Date: Wed, 12 Feb 2025 01:27:44 +0100 Subject: Restructure rom image and use dependencies for makefiles --- boot/cmd/Makefile | 12 ++++++++++++ boot/cmd/main.c | 4 ++++ 2 files changed, 16 insertions(+) create mode 100644 boot/cmd/Makefile create mode 100644 boot/cmd/main.c (limited to 'boot/cmd') diff --git a/boot/cmd/Makefile b/boot/cmd/Makefile new file mode 100644 index 0000000..5c359e4 --- /dev/null +++ b/boot/cmd/Makefile @@ -0,0 +1,12 @@ +BUILD=$(PROJECT_ROOT)/build/boot/cmd + +TARGET=$(BUILD)/cmd.hex +IHX=$(BUILD)/cmd.ihx + +ASM=$(wildcard *.asm) +SRC=$(wildcard *.c) + +all : $(TARGET) $(PROJECT_ROOT)/payload.mk + +include $(PROJECT_ROOT)/payload.mk +include $(PROJECT_ROOT)/include.mk diff --git a/boot/cmd/main.c b/boot/cmd/main.c new file mode 100644 index 0000000..b363531 --- /dev/null +++ b/boot/cmd/main.c @@ -0,0 +1,4 @@ +void +main(void) +{ +} -- cgit v1.2.3