2019-06-29 14:25:18 -04:00
|
|
|
.equ RAMSTART 0x8000
|
|
|
|
.equ RAMEND 0xffff
|
|
|
|
.equ ACIA_CTL 0x80 ; Control and status. RS off.
|
|
|
|
.equ ACIA_IO 0x81 ; Transmit. RS on.
|
|
|
|
.equ KBD_PORT 0x08
|
|
|
|
|
|
|
|
jp init
|
|
|
|
|
2019-10-06 14:32:23 -04:00
|
|
|
.inc "err.h"
|
2019-11-13 20:38:06 -05:00
|
|
|
.inc "ascii.h"
|
2019-10-06 14:32:23 -04:00
|
|
|
.inc "core.asm"
|
2019-11-14 09:55:31 -05:00
|
|
|
.inc "str.asm"
|
2019-06-29 14:25:18 -04:00
|
|
|
.equ ACIA_RAMSTART RAMSTART
|
2019-10-06 14:32:23 -04:00
|
|
|
.inc "acia.asm"
|
2019-06-29 14:25:18 -04:00
|
|
|
|
|
|
|
.equ KBD_RAMSTART ACIA_RAMEND
|
2019-10-06 14:32:23 -04:00
|
|
|
.inc "kbd.asm"
|
2019-06-29 14:25:18 -04:00
|
|
|
|
|
|
|
.equ STDIO_RAMSTART KBD_RAMEND
|
2019-11-04 09:55:12 -05:00
|
|
|
.equ STDIO_GETC kbdGetC
|
|
|
|
.equ STDIO_PUTC aciaPutC
|
2019-10-06 14:32:23 -04:00
|
|
|
.inc "stdio.asm"
|
2019-06-29 14:25:18 -04:00
|
|
|
|
2019-11-15 15:37:49 -05:00
|
|
|
; *** Shell ***
|
|
|
|
.inc "lib/util.asm"
|
|
|
|
.inc "lib/parse.asm"
|
|
|
|
.inc "lib/args.asm"
|
|
|
|
.inc "lib/stdio.asm"
|
2019-06-29 14:25:18 -04:00
|
|
|
.equ SHELL_RAMSTART STDIO_RAMEND
|
|
|
|
.equ SHELL_EXTRA_CMD_COUNT 0
|
2019-11-15 15:37:49 -05:00
|
|
|
.inc "shell/main.asm"
|
2019-06-29 14:25:18 -04:00
|
|
|
|
|
|
|
init:
|
|
|
|
di
|
|
|
|
; setup stack
|
|
|
|
ld hl, RAMEND
|
|
|
|
ld sp, hl
|
|
|
|
|
|
|
|
call aciaInit
|
2019-06-30 14:16:00 -04:00
|
|
|
call kbdInit
|
2019-06-29 14:25:18 -04:00
|
|
|
call shellInit
|
|
|
|
jp shellLoop
|
2019-07-19 15:45:13 -04:00
|
|
|
|
|
|
|
KBD_FETCHKC:
|
|
|
|
in a, (KBD_PORT)
|
|
|
|
ret
|
|
|
|
|