diff options
Diffstat (limited to 'c/libc.s')
| -rw-r--r-- | c/libc.s | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -1,6 +1,6 @@ .module libc .globl _writes, _putc, _puts, _nl, _strlen, _readc, _sexit, _getpid, _getargs - .globl _open, _close, _fgetc, _fputc, _flist, _fremove, _pipe + .globl _open, _close, _fgetc, _fputc, _flist, _fremove, _pipe, _ssend, _srecv ;; SDCC sm83 sdcccall(1): 1st arg -> A (byte) or DE (pointer); ret A / BC. ;; rst $30 (the trap) clobbers BC/DE/HL; SDCC treats them caller-saved, so ;; wrappers need not preserve them - but we compute cleanly regardless. @@ -92,6 +92,19 @@ _pipe: rst #0x30 ret + ;; void ssend(unsigned char b /*A*/) -- link-port transmit +_ssend: + ld e, a + ld c, #29 ; SYS_SSEND + rst #0x30 + ret + + ;; unsigned char srecv(void) -> A -- link-port receive (blocks) +_srecv: + ld c, #30 ; SYS_SRECV + rst #0x30 + ret + ;; unsigned char open(const char *name /*DE*/, unsigned char mode /*A*/) -> A(fd) _open: ld b, a ; B = mode |
