mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 03:40:54 +11:00
7083116379
They serve no purpose and make the code less flexible.
23 lines
441 B
NASM
23 lines
441 B
NASM
; *** JUMP TABLE ***
|
|
strncmp .equ 0x03
|
|
addDE .equ 0x06
|
|
addHL .equ 0x09
|
|
upcase .equ 0x0c
|
|
unsetZ .equ 0x0f
|
|
intoDE .equ 0x12
|
|
intoHL .equ 0x15
|
|
findchar .equ 0x18
|
|
parseHexPair .equ 0x1b
|
|
blkSel .equ 0x1e
|
|
fsFindFN .equ 0x21
|
|
fsOpen .equ 0x24
|
|
fsGetC .equ 0x27
|
|
fsSeek .equ 0x2a
|
|
fsTell .equ 0x2d
|
|
|
|
.equ FS_HANDLE_SIZE 8
|
|
.equ USER_CODE 0x4800
|
|
.equ RAMSTART 0x5800
|
|
.org USER_CODE
|
|
#include "main.asm"
|