From 3ffebff2aad2ca438cf76db51fb3459c5639cd67 Mon Sep 17 00:00:00 2001 From: lameguy64 Date: Thu, 23 May 2019 22:24:56 +0800 Subject: Added BIOS Controller, BIOS CD, 2 new examples and custom exit handler in the works --- examples/cartrom/rom.ld | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 examples/cartrom/rom.ld (limited to 'examples/cartrom/rom.ld') diff --git a/examples/cartrom/rom.ld b/examples/cartrom/rom.ld new file mode 100644 index 0000000..f3f9cd3 --- /dev/null +++ b/examples/cartrom/rom.ld @@ -0,0 +1,11 @@ +MEMORY { + ROM : ORIGIN = 0x1f000000, LENGTH = 256K +} + +ENTRY (entry) + +SECTIONS { + .text :{ + *(.text) + } >ROM +} -- cgit v1.2.3