2019-05-01 11:40:22 +10:00
|
|
|
; *** CONSTS ***
|
|
|
|
|
2019-05-02 04:07:01 +10:00
|
|
|
.equ D_DB 0x00
|
|
|
|
.equ D_DW 0x01
|
|
|
|
.equ D_BAD 0xff
|
2019-05-01 11:40:22 +10:00
|
|
|
|
|
|
|
; *** CODE ***
|
|
|
|
|
|
|
|
; 4 bytes per row, fill with zero
|
|
|
|
directiveNames:
|
|
|
|
.db ".DB", 0
|
2019-05-02 04:07:01 +10:00
|
|
|
.db ".DW", 0
|
2019-05-01 11:40:22 +10:00
|
|
|
|
2019-05-02 01:26:41 +10:00
|
|
|
; This is a list of handlers corresponding to indexes in directiveNames
|
|
|
|
directiveHandlers:
|
|
|
|
.dw handleDB
|
2019-05-02 04:07:01 +10:00
|
|
|
.dw handleDW
|
2019-05-02 01:26:41 +10:00
|
|
|
|
|
|
|
handleDB:
|
|
|
|
push hl
|
|
|
|
call toWord
|
|
|
|
call readWord
|
|
|
|
ld hl, scratchpad
|
|
|
|
call parseNumber
|
|
|
|
ld a, ixl
|
|
|
|
ld (direcData), a
|
|
|
|
ld a, 1
|
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
|
2019-05-02 04:07:01 +10:00
|
|
|
handleDW:
|
|
|
|
push hl
|
|
|
|
call toWord
|
|
|
|
call readWord
|
|
|
|
ld hl, scratchpad
|
|
|
|
call parseNumber
|
|
|
|
ld a, ixl
|
|
|
|
ld (direcData), a
|
|
|
|
ld a, ixh
|
|
|
|
ld (direcData+1), a
|
|
|
|
ld a, 2
|
|
|
|
pop hl
|
|
|
|
ret
|
2019-05-02 01:26:41 +10:00
|
|
|
|
2019-05-01 11:40:22 +10:00
|
|
|
; Reads string in (HL) and returns the corresponding ID (D_*) in A. Sets Z if
|
|
|
|
; there's a match.
|
|
|
|
getDirectiveID:
|
|
|
|
push bc
|
|
|
|
push de
|
2019-05-02 04:07:01 +10:00
|
|
|
ld b, D_DW+1 ; D_DW is last
|
2019-05-01 11:40:22 +10:00
|
|
|
ld c, 4
|
|
|
|
ld de, directiveNames
|
|
|
|
call findStringInList
|
|
|
|
pop de
|
|
|
|
pop bc
|
|
|
|
ret
|
|
|
|
|
2019-05-02 01:26:41 +10:00
|
|
|
; Parse directive specified in A (D_* const) with args in (HL) and act in
|
|
|
|
; an appropriate manner. If the directive results in writing data at its
|
|
|
|
; current location, that data is in (direcData) and A is the number of bytes
|
|
|
|
; in it.
|
2019-05-01 11:40:22 +10:00
|
|
|
parseDirective:
|
2019-05-02 01:26:41 +10:00
|
|
|
push de
|
|
|
|
; double A to have a proper offset in directiveHandlers
|
|
|
|
add a, a
|
|
|
|
ld de, directiveHandlers
|
|
|
|
call JUMP_ADDDE
|
2019-05-02 04:07:01 +10:00
|
|
|
call JUMP_INTODE
|
2019-05-02 01:26:41 +10:00
|
|
|
ld ixh, d
|
|
|
|
ld ixl, e
|
|
|
|
pop de
|
|
|
|
jp (ix)
|
|
|
|
|
|
|
|
; *** Variables ***
|
|
|
|
direcData:
|
|
|
|
.fill 2
|