collapseos/apps/zasm/directive.asm

148 lines
2.5 KiB
NASM
Raw Normal View History

2019-05-01 11:40:22 +10:00
; *** CONSTS ***
.equ D_DB 0x00
.equ D_DW 0x01
2019-05-12 12:11:05 +10:00
.equ D_EQU 0x02
2019-05-17 11:15:00 +10:00
.equ D_INC 0x03
.equ D_BAD 0xff
2019-05-01 11:40:22 +10:00
2019-05-12 12:11:05 +10:00
; *** Variables ***
.equ DIREC_SCRATCHPAD DIREC_RAMSTART
.equ DIREC_RAMEND DIREC_SCRATCHPAD+SCRATCHPAD_SIZE
2019-05-01 11:40:22 +10:00
; *** CODE ***
; 4 bytes per row, fill with zero
directiveNames:
.db ".DB", 0
.db ".DW", 0
2019-05-12 12:11:05 +10:00
.db ".EQU"
2019-05-17 11:15:00 +10:00
.db "#inc"
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
.dw handleDW
2019-05-12 12:11:05 +10:00
.dw handleEQU
2019-05-17 11:15:00 +10:00
.dw handleINC
2019-05-02 01:26:41 +10:00
handleDB:
push hl
.loop:
2019-05-02 01:26:41 +10:00
call readWord
ld hl, scratchpad
2019-05-15 03:53:12 +10:00
call parseLiteral
2019-05-02 01:26:41 +10:00
ld a, ixl
2019-05-18 05:14:38 +10:00
call ioPutC
call readComma
jr z, .loop
2019-05-02 01:26:41 +10:00
pop hl
ret
handleDW:
push hl
.loop:
call readWord
ld hl, scratchpad
2019-05-15 05:26:29 +10:00
call parseExpr
2019-05-18 05:14:38 +10:00
push ix \ pop hl
ld a, l
call ioPutC
ld a, h
call ioPutC
call readComma
jr z, .loop
pop hl
ret
2019-05-02 01:26:41 +10:00
2019-05-12 12:11:05 +10:00
handleEQU:
call zasmIsFirstPass
jr nz, .begin
; first pass? .equ are noops Consume args and return
call readWord
call readWord
2019-05-12 12:11:05 +10:00
xor a
ret
.begin:
push hl
push de
push bc
; Read our constant name
call readWord
; We can't register our symbol yet: we don't have our value!
; Let's copy it over.
ld de, DIREC_SCRATCHPAD
ld bc, SCRATCHPAD_SIZE
ldir
2019-05-12 12:11:05 +10:00
; Now, read the value associated to it
call readWord
ld hl, scratchpad
2019-05-15 05:26:29 +10:00
call parseExpr
2019-05-12 12:11:05 +10:00
jr nz, .error
ld hl, DIREC_SCRATCHPAD
ld d, ixh
ld e, ixl
call symRegister
jr .end
.error:
.end:
xor a ; 0 bytes written
pop bc
pop de
pop hl
ret
2019-05-17 11:15:00 +10:00
handleINC:
call readWord
jr nz, .end
; HL points to scratchpad
; First, let's verify that our string is enquoted
ld a, (hl)
cp '"'
jr nz, .end
; We have opening quote
inc hl
xor a
call findchar ; go to end of string
2019-05-17 11:15:00 +10:00
dec hl
ld a, (hl)
cp '"'
jr nz, .end
; we have ending quote, let's replace with null char
xor a
ld (hl), a
; Good, let's go back
ld hl, scratchpad+1 ; +1 because of the opening quote
call ioOpenInclude
.end:
xor a ; zero bytes written
ret
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-17 11:15:00 +10:00
ld b, D_INC+1 ; D_INC is last
2019-05-01 11:40:22 +10:00
ld c, 4
ld de, directiveNames
call findStringInList
pop de
pop bc
ret
; Parse directive specified in A (D_* const) with args in I/O and act in
2019-05-02 01:26:41 +10:00
; an appropriate manner. If the directive results in writing data at its
2019-05-18 05:14:38 +10:00
; current location, that data is directly written through ioPutC.
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 addDE
call intoDE
2019-05-02 01:26:41 +10:00
ld ixh, d
ld ixl, e
pop de
jp (ix)