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/libc | |
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/libc')
-rw-r--r-- | sw/z80/libc/mem.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sw/z80/libc/mem.c b/sw/z80/libc/mem.c deleted file mode 100644 index 667a752..0000000 --- a/sw/z80/libc/mem.c +++ /dev/null @@ -1,7 +0,0 @@ -#include "types.h" -#include "mem.h" - -void *malloc(size_t size) -{ - : -} |