From 9a3ccc2fc13150af418d4fbee266fd593891ec45 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Mon, 23 Sep 2024 10:13:46 -0400 Subject: [PATCH] make _start global in runtime --- lib/runtime.asm | 1 + 1 file changed, 1 insertion(+) 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