mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 12:28:06 +11:00
c18d42f08b
Previous refacoring broke all seek/tell within fs. fs handles now lost the responsibility to keep track of current position. It's blkdev's job.
46 lines
1.1 KiB
NASM
46 lines
1.1 KiB
NASM
.equ USER_CODE 0x4800
|
|
.equ USER_RAMSTART 0x5800
|
|
.equ FS_HANDLE_SIZE 8
|
|
.equ BLOCKDEV_SIZE 8
|
|
|
|
; *** JUMP TABLE ***
|
|
.equ strncmp 0x03
|
|
.equ addDE 0x06
|
|
.equ addHL 0x09
|
|
.equ upcase 0x0c
|
|
.equ unsetZ 0x0f
|
|
.equ intoDE 0x12
|
|
.equ intoHL 0x15
|
|
.equ writeHLinDE 0x18
|
|
.equ findchar 0x1b
|
|
.equ parseHex 0x1e
|
|
.equ parseHexPair 0x21
|
|
.equ blkSel 0x24
|
|
.equ blkSet 0x27
|
|
.equ fsFindFN 0x2a
|
|
.equ fsOpen 0x2d
|
|
.equ fsGetC 0x30
|
|
.equ cpHLDE 0x33
|
|
.equ parseArgs 0x36
|
|
.equ _blkGetC 0x39
|
|
.equ _blkPutC 0x3c
|
|
.equ _blkSeek 0x3f
|
|
.equ _blkTell 0x42
|
|
|
|
#include "err.h"
|
|
#include "zasm/const.asm"
|
|
#include "zasm/util.asm"
|
|
.equ IO_RAMSTART USER_RAMSTART
|
|
#include "zasm/io.asm"
|
|
.equ SYM_RAMSTART IO_RAMEND
|
|
#include "zasm/symbol.asm"
|
|
#include "zasm/parse.asm"
|
|
.equ TOK_RAMSTART SYM_RAMEND
|
|
#include "zasm/tok.asm"
|
|
.equ DIREC_RAMSTART TOK_RAMEND
|
|
#include "zasm/directive.asm"
|
|
#include "zasm/instr.asm"
|
|
#include "zasm/expr.asm"
|
|
.equ ZASM_RAMSTART TOK_RAMEND
|
|
#include "zasm/main.asm"
|