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-06-03 05:50:59 +10:00
|
|
|
#include "err.h"
|
2019-05-17 22:14:19 +10:00
|
|
|
#include "core.asm"
|
2019-05-17 23:33:20 +10:00
|
|
|
#include "parse.asm"
|
2019-05-21 01:00:14 +10:00
|
|
|
.equ ACIA_RAMSTART RAMSTART
|
2019-05-17 22:14:19 +10:00
|
|
|
#include "acia.asm"
|
|
|
|
|
2019-06-03 00:50:18 +10:00
|
|
|
.equ STDIO_RAMSTART ACIA_RAMEND
|
2019-05-17 22:14:19 +10:00
|
|
|
#include "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-05-17 22:14:19 +10:00
|
|
|
#include "shell.asm"
|
|
|
|
|
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
|
2019-06-03 00:50:18 +10:00
|
|
|
ld hl, aciaGetC
|
|
|
|
ld de, aciaPutC
|
2019-05-17 22:14:19 +10:00
|
|
|
call stdioInit
|
2019-04-17 01:50:16 +10:00
|
|
|
call shellInit
|
|
|
|
ei
|
|
|
|
jp shellLoop
|
|
|
|
|