diff options
author | Nao Pross <naopross@thearcway.org> | 2017-05-02 22:09:40 +0200 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2017-05-02 22:09:40 +0200 |
commit | 8a461a14c3ceaf42f1483abe51cda47ac785bfc9 (patch) | |
tree | b31789c1c24340e2e0f391f875aa5a12fc85d485 /sw/z80/crt0.s | |
parent | Merge branch 'atlas' into naopross (diff) | |
download | z80uPC-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.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. |