diff options
author | leleraffa97@hotmail.it <leleraffa97@hotmail.it> | 2017-06-19 13:50:25 +0200 |
---|---|---|
committer | leleraffa97@hotmail.it <leleraffa97@hotmail.it> | 2017-06-19 13:50:25 +0200 |
commit | 335bc4afe0648ede6c7699541367db8e22355d72 (patch) | |
tree | 09175c9e14496ab7b36733f6c3c3bd9b85e1fbb8 /sw/z80/crt0.s | |
parent | Authentication section (diff) | |
parent | merge branch 'naopross' (diff) | |
download | z80uPC-335bc4afe0648ede6c7699541367db8e22355d72.tar.gz z80uPC-335bc4afe0648ede6c7699541367db8e22355d72.zip |
Merge branch 'master' of github.com:NaoPross/z80uPC into atlas
Serial updates from NaoPross
Diffstat (limited to 'sw/z80/crt0.s')
-rw-r--r-- | sw/z80/crt0.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/z80/crt0.s b/sw/z80/crt0.s index 7701ca6..00c7da1 100644 --- a/sw/z80/crt0.s +++ b/sw/z80/crt0.s @@ -27,7 +27,7 @@ ;-------------------------------------------------------------------------- .module crt0 - .globl _main + .globl _kmain .area _HEADER (ABS) ;; Reset vector @@ -56,7 +56,7 @@ init: ;; Initialise global variables call gsinit - call _main + call _kmain jp _exit ;; Ordering of segments for the linker. |