summaryrefslogtreecommitdiffstats
path: root/sw/z80/crt0.s
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2017-05-02 22:09:40 +0200
committerNao Pross <naopross@thearcway.org>2017-05-02 22:09:40 +0200
commit8a461a14c3ceaf42f1483abe51cda47ac785bfc9 (patch)
treeb31789c1c24340e2e0f391f875aa5a12fc85d485 /sw/z80/crt0.s
parentMerge branch 'atlas' into naopross (diff)
downloadz80uPC-8a461a14c3ceaf42f1483abe51cda47ac785bfc9.tar.gz
z80uPC-8a461a14c3ceaf42f1483abe51cda47ac785bfc9.zip
add serial device struct
other changes: - change from main() to kmain() in crt0.s and kernel.c - new file devices.h to define all address locations for devices - new data type - register_t as volatile uint8_t for registers in devices - size_t from libc
Diffstat (limited to 'sw/z80/crt0.s')
-rw-r--r--sw/z80/crt0.s4
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.