summaryrefslogtreecommitdiff
path: root/rtl/gfx/firmware/mod.mk
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2024-05-22 15:04:30 -0600
committerAlejandro Soto <alejandro@34project.org>2024-05-24 05:58:43 -0600
commit4e634e196f542b76933d6bbe1861849557898683 (patch)
tree090a1ab462cd58f4a6e8f7308780b4dd33e77525 /rtl/gfx/firmware/mod.mk
parente12e7af8b9d125a2dbd247dcd71896e4a6873d5a (diff)
rtl/gfx/firmware: implement mk build for bootrom
Diffstat (limited to 'rtl/gfx/firmware/mod.mk')
-rw-r--r--rtl/gfx/firmware/mod.mk17
1 files changed, 17 insertions, 0 deletions
diff --git a/rtl/gfx/firmware/mod.mk b/rtl/gfx/firmware/mod.mk
new file mode 100644
index 0000000..2a37a9c
--- /dev/null
+++ b/rtl/gfx/firmware/mod.mk
@@ -0,0 +1,17 @@
+cores := gfx_bootrom
+
+define core/gfx_bootrom
+ $(this)/cross := riscv32-none-elf-
+ $(this)/hooks := cc objcopy makehex obj
+
+ $(this)/cc_files := gfx_bootrom.S
+ $(this)/cc_flags = -g -march=rv32imc -mabi=ilp32
+ $(this)/ld_flags := -nostartfiles -nostdlib
+ $(this)/ld_binary := gfx_bootrom
+
+ $(this)/objcopy_src := gfx_bootrom
+ $(this)/objcopy_obj := gfx_bootrom.bin
+
+ $(this)/makehex_src := gfx_bootrom.bin
+ $(this)/makehex_obj := gfx_bootrom.hex
+endef