summaryrefslogtreecommitdiff
path: root/lib/runtime.asm
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2024-09-23 10:13:46 -0400
committerFreya Murphy <freya@freyacat.org>2024-09-23 10:13:46 -0400
commit9a3ccc2fc13150af418d4fbee266fd593891ec45 (patch)
treed069b9ef4440ab8d24237a3d01452f6a9081cc45 /lib/runtime.asm
parentfix local vs global symbol names, locals now are local (diff)
downloadmips-9a3ccc2fc13150af418d4fbee266fd593891ec45.tar.gz
mips-9a3ccc2fc13150af418d4fbee266fd593891ec45.tar.bz2
mips-9a3ccc2fc13150af418d4fbee266fd593891ec45.zip
make _start global in runtime
Diffstat (limited to '')
-rw-r--r--lib/runtime.asm1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/runtime.asm b/lib/runtime.asm
index 5cb4458..8e4034b 100644
--- a/lib/runtime.asm
+++ b/lib/runtime.asm
@@ -6,6 +6,7 @@
#
.extern main
+.globl _start
.stack
.align 2