summaryrefslogtreecommitdiff
path: root/ld_script.ld
diff options
context:
space:
mode:
authorMarcus Huderle <huderlem@gmail.com>2018-10-11 12:27:06 -0500
committerMarcus Huderle <huderlem@gmail.com>2018-10-11 12:27:06 -0500
commitc0ce4f82ad10178eab328cb0da3f03639c3b5b8e (patch)
tree3996e049c7bf2dcbc17c651dc24628e92e80068e /ld_script.ld
parentad3ef8944eb4e1291c1ac9bcf06a9f5779b20c55 (diff)
Match first C function
Diffstat (limited to 'ld_script.ld')
-rwxr-xr-xld_script.ld2
1 files changed, 2 insertions, 0 deletions
diff --git a/ld_script.ld b/ld_script.ld
index 639b678..ec9609c 100755
--- a/ld_script.ld
+++ b/ld_script.ld
@@ -23,6 +23,8 @@ SECTIONS
.text :
{
asm/start.o(.text);
+ src/main.o(.text);
+ asm/main.o(.text);
asm/rom.o(.text);
}=0xFF
}