emul/shell: use '@' symbol in jump table

This commit is contained in:
Virgil Dupras 2019-10-04 20:29:42 -04:00
parent 612323f714
commit 340a474941
1 changed files with 27 additions and 27 deletions

View File

@ -5,30 +5,30 @@
; *** JUMP TABLE *** ; *** JUMP TABLE ***
.equ strncmp 0x03 .equ strncmp 0x03
.equ addDE 0x06 .equ addDE @+3
.equ addHL 0x09 .equ addHL @+3
.equ upcase 0x0c .equ upcase @+3
.equ unsetZ 0x0f .equ unsetZ @+3
.equ intoDE 0x12 .equ intoDE @+3
.equ intoHL 0x15 .equ intoHL @+3
.equ writeHLinDE 0x18 .equ writeHLinDE @+3
.equ findchar 0x1b .equ findchar @+3
.equ parseHex 0x1e .equ parseHex @+3
.equ parseHexPair 0x21 .equ parseHexPair @+3
.equ blkSel 0x24 .equ blkSel @+3
.equ blkSet 0x27 .equ blkSet @+3
.equ fsFindFN 0x2a .equ fsFindFN @+3
.equ fsOpen 0x2d .equ fsOpen @+3
.equ fsGetC 0x30 .equ fsGetC @+3
.equ fsPutC 0x33 .equ fsPutC @+3
.equ fsSetSize 0x36 .equ fsSetSize @+3
.equ cpHLDE 0x39 .equ cpHLDE @+3
.equ parseArgs 0x3c .equ parseArgs @+3
.equ printstr 0x3f .equ printstr @+3
.equ _blkGetC 0x42 .equ _blkGetC @+3
.equ _blkPutC 0x45 .equ _blkPutC @+3
.equ _blkSeek 0x48 .equ _blkSeek @+3
.equ _blkTell 0x4b .equ _blkTell @+3
.equ printcrlf 0x4e .equ printcrlf @+3
.equ stdioPutC 0x51 .equ stdioPutC @+3
.equ stdioReadLine 0x54 .equ stdioReadLine @+3