diff options
Diffstat (limited to '')
-rw-r--r-- | sw/z80_test/crt0.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/z80_test/crt0.s b/sw/z80_test/crt0.s index 00c7da1..7701ca6 100644 --- a/sw/z80_test/crt0.s +++ b/sw/z80_test/crt0.s @@ -27,7 +27,7 @@ ;-------------------------------------------------------------------------- .module crt0 - .globl _kmain + .globl _main .area _HEADER (ABS) ;; Reset vector @@ -56,7 +56,7 @@ init: ;; Initialise global variables call gsinit - call _kmain + call _main jp _exit ;; Ordering of segments for the linker. |