2019-04-17 01:50:16 +10:00
|
|
|
; classic RC2014 setup (8K ROM + 32K RAM) and a stock Serial I/O module
|
|
|
|
; The RAM module is selected on A15, so it has the range 0x8000-0xffff
|
2019-05-21 01:00:14 +10:00
|
|
|
.equ RAMSTART 0x8000
|
|
|
|
.equ RAMEND 0xffff
|
|
|
|
.equ ACIA_CTL 0x80 ; Control and status. RS off.
|
|
|
|
.equ ACIA_IO 0x81 ; Transmit. RS on.
|
2019-04-17 01:50:16 +10:00
|
|
|
|
2019-05-17 22:14:19 +10:00
|
|
|
jp init
|
2019-04-17 01:50:16 +10:00
|
|
|
|
|
|
|
; interrupt hook
|
|
|
|
.fill 0x38-$
|
|
|
|
jp aciaInt
|
|
|
|
|
2019-10-07 05:32:23 +11:00
|
|
|
.inc "err.h"
|
2019-11-14 12:38:06 +11:00
|
|
|
.inc "ascii.h"
|
2019-10-07 05:32:23 +11:00
|
|
|
.inc "core.asm"
|
2019-11-15 01:55:31 +11:00
|
|
|
.inc "str.asm"
|
2019-05-21 01:00:14 +10:00
|
|
|
.equ ACIA_RAMSTART RAMSTART
|
2019-10-07 05:32:23 +11:00
|
|
|
.inc "acia.asm"
|
2019-05-17 22:14:19 +10:00
|
|
|
|
2019-06-03 00:50:18 +10:00
|
|
|
.equ STDIO_RAMSTART ACIA_RAMEND
|
2019-11-05 01:55:12 +11:00
|
|
|
.equ STDIO_GETC aciaGetC
|
|
|
|
.equ STDIO_PUTC aciaPutC
|
2019-10-07 05:32:23 +11:00
|
|
|
.inc "stdio.asm"
|
2019-05-17 22:14:19 +10:00
|
|
|
|
2019-11-16 07:37:49 +11:00
|
|
|
; *** Shell ***
|
|
|
|
.inc "lib/util.asm"
|
|
|
|
.inc "lib/parse.asm"
|
|
|
|
.inc "lib/args.asm"
|
|
|
|
.inc "lib/stdio.asm"
|
2019-05-21 01:00:14 +10:00
|
|
|
.equ SHELL_RAMSTART STDIO_RAMEND
|
2019-06-01 04:50:43 +10:00
|
|
|
.equ SHELL_EXTRA_CMD_COUNT 0
|
2019-11-16 07:37:49 +11:00
|
|
|
.inc "shell/main.asm"
|
2019-05-17 22:14:19 +10:00
|
|
|
|
2019-04-17 01:50:16 +10:00
|
|
|
init:
|
|
|
|
di
|
|
|
|
; setup stack
|
|
|
|
ld hl, RAMEND
|
|
|
|
ld sp, hl
|
|
|
|
im 1
|
2019-05-17 22:14:19 +10:00
|
|
|
|
2019-04-17 01:50:16 +10:00
|
|
|
call aciaInit
|
|
|
|
call shellInit
|
|
|
|
ei
|
|
|
|
jp shellLoop
|
|
|
|
|