2019-05-08 05:26:52 +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
|
2019-06-01 04:50:43 +10:00
|
|
|
.equ PGM_CODEADDR 0x9000
|
2019-05-21 01:00:14 +10:00
|
|
|
.equ ACIA_CTL 0x80 ; Control and status. RS off.
|
|
|
|
.equ ACIA_IO 0x81 ; Transmit. RS on.
|
2019-05-08 05:26:52 +10:00
|
|
|
|
2019-05-29 03:13:34 +10:00
|
|
|
jp init ; 3 bytes
|
|
|
|
|
|
|
|
; *** Jump Table ***
|
|
|
|
jp printstr
|
2019-06-02 09:53:42 +10:00
|
|
|
jp sdcWaitResp
|
|
|
|
jp sdcCmd
|
|
|
|
jp sdcCmdR1
|
|
|
|
jp sdcCmdR7
|
|
|
|
jp sdcSendRecv
|
2019-05-08 05:26:52 +10:00
|
|
|
|
|
|
|
; interrupt hook
|
|
|
|
.fill 0x38-$
|
|
|
|
jp aciaInt
|
|
|
|
|
2019-06-03 05:50:59 +10:00
|
|
|
#include "err.h"
|
2019-05-08 05:26:52 +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-08 05:26:52 +10:00
|
|
|
#include "acia.asm"
|
2019-05-21 01:00:14 +10:00
|
|
|
.equ BLOCKDEV_RAMSTART ACIA_RAMEND
|
2019-06-03 01:53:36 +10:00
|
|
|
.equ BLOCKDEV_COUNT 2
|
2019-05-09 06:03:54 +10:00
|
|
|
#include "blockdev.asm"
|
|
|
|
; List of devices
|
2019-06-05 01:53:02 +10:00
|
|
|
.dw sdcGetC, sdcPutC
|
|
|
|
.dw blk2GetC, blk2PutC
|
2019-05-10 00:47:57 +10:00
|
|
|
|
2019-05-09 06:03:54 +10:00
|
|
|
|
2019-05-21 01:00:14 +10:00
|
|
|
.equ STDIO_RAMSTART BLOCKDEV_RAMEND
|
2019-05-17 22:14:19 +10:00
|
|
|
#include "stdio.asm"
|
|
|
|
|
2019-05-29 03:13:34 +10:00
|
|
|
.equ FS_RAMSTART STDIO_RAMEND
|
|
|
|
.equ FS_HANDLE_COUNT 1
|
|
|
|
#include "fs.asm"
|
|
|
|
|
|
|
|
.equ SHELL_RAMSTART FS_RAMEND
|
2019-06-03 01:53:36 +10:00
|
|
|
.equ SHELL_EXTRA_CMD_COUNT 11
|
2019-05-08 05:26:52 +10:00
|
|
|
#include "shell.asm"
|
2019-06-03 01:53:36 +10:00
|
|
|
.dw sdcInitializeCmd, sdcFlushCmd
|
|
|
|
.dw blkBselCmd, blkSeekCmd, blkLoadCmd, blkSaveCmd
|
2019-05-29 03:13:34 +10:00
|
|
|
.dw fsOnCmd, flsCmd, fnewCmd, fdelCmd, fopnCmd
|
2019-05-08 05:26:52 +10:00
|
|
|
|
2019-06-05 01:53:02 +10:00
|
|
|
#include "blockdev_cmds.asm"
|
|
|
|
#include "fs_cmds.asm"
|
|
|
|
|
|
|
|
.equ PGM_RAMSTART SHELL_RAMEND
|
2019-06-01 04:50:43 +10:00
|
|
|
#include "pgm.asm"
|
|
|
|
|
2019-06-05 01:53:02 +10:00
|
|
|
.equ SDC_RAMSTART PGM_RAMEND
|
2019-06-01 04:50:43 +10:00
|
|
|
.equ SDC_PORT_CSHIGH 6
|
|
|
|
.equ SDC_PORT_CSLOW 5
|
|
|
|
.equ SDC_PORT_SPI 4
|
2019-05-08 05:26:52 +10:00
|
|
|
#include "sdc.asm"
|
2019-05-11 08:20:43 +10:00
|
|
|
|
|
|
|
init:
|
|
|
|
di
|
|
|
|
; setup stack
|
|
|
|
ld hl, RAMEND
|
|
|
|
ld sp, hl
|
2019-06-03 01:53:36 +10:00
|
|
|
im 1
|
2019-05-11 08:20:43 +10:00
|
|
|
call aciaInit
|
2019-06-03 01:53:36 +10:00
|
|
|
ld hl, aciaGetC
|
|
|
|
ld de, aciaPutC
|
2019-05-17 22:14:19 +10:00
|
|
|
call stdioInit
|
2019-06-18 03:44:36 +10:00
|
|
|
call fsInit
|
2019-05-11 08:20:43 +10:00
|
|
|
call shellInit
|
2019-06-01 04:50:43 +10:00
|
|
|
ld hl, pgmShellHook
|
|
|
|
ld (SHELL_CMDHOOK), hl
|
2019-05-11 08:20:43 +10:00
|
|
|
|
2019-06-03 01:53:36 +10:00
|
|
|
xor a
|
2019-06-04 23:56:36 +10:00
|
|
|
ld de, BLOCKDEV_SEL
|
2019-06-03 01:53:36 +10:00
|
|
|
call blkSel
|
|
|
|
|
2019-05-11 08:20:43 +10:00
|
|
|
ei
|
|
|
|
jp shellLoop
|
|
|
|
|
2019-05-29 03:13:34 +10:00
|
|
|
; *** blkdev 2: file handle 0 ***
|
|
|
|
|
|
|
|
blk2GetC:
|
2019-06-03 00:18:03 +10:00
|
|
|
ld ix, FS_HANDLES
|
2019-05-29 03:13:34 +10:00
|
|
|
jp fsGetC
|
|
|
|
|
|
|
|
blk2PutC:
|
2019-06-03 00:18:03 +10:00
|
|
|
ld ix, FS_HANDLES
|
2019-05-29 03:13:34 +10:00
|
|
|
jp fsPutC
|