2019-05-11 11:19:34 +10:00
|
|
|
; Parse string at (HL) as a hexadecimal value and return value in IX under the
|
2019-05-15 03:53:12 +10:00
|
|
|
; same conditions as parseLiteral.
|
2019-05-11 11:19:34 +10:00
|
|
|
parseHexadecimal:
|
2019-05-15 03:53:12 +10:00
|
|
|
call hasHexPrefix
|
|
|
|
ret nz
|
2019-05-10 11:21:08 +10:00
|
|
|
push hl
|
2019-05-19 09:59:58 +10:00
|
|
|
push de
|
|
|
|
ld d, 0
|
2019-05-11 11:19:34 +10:00
|
|
|
inc hl ; get rid of "0x"
|
2019-05-10 11:21:08 +10:00
|
|
|
inc hl
|
2019-05-11 11:19:34 +10:00
|
|
|
call strlen
|
|
|
|
cp 3
|
|
|
|
jr c, .single
|
2019-05-18 13:00:57 +10:00
|
|
|
cp 4
|
|
|
|
jr c, .doubleShort ; 0x123
|
2019-05-11 11:19:34 +10:00
|
|
|
cp 5
|
2019-05-18 13:00:57 +10:00
|
|
|
jr c, .double ; 0x1234
|
2019-05-11 11:19:34 +10:00
|
|
|
; too long, error
|
|
|
|
jr .error
|
|
|
|
.double:
|
2019-05-18 13:00:57 +10:00
|
|
|
call parseHexPair
|
|
|
|
jr c, .error
|
|
|
|
inc hl ; now HL is on first char of next pair
|
2019-05-19 09:59:58 +10:00
|
|
|
ld d, a
|
2019-05-18 13:00:57 +10:00
|
|
|
jr .single
|
|
|
|
.doubleShort:
|
|
|
|
ld a, (hl)
|
|
|
|
call parseHex
|
2019-05-11 11:19:34 +10:00
|
|
|
jr c, .error
|
|
|
|
inc hl ; now HL is on first char of next pair
|
2019-05-19 09:59:58 +10:00
|
|
|
ld d, a
|
2019-05-11 11:19:34 +10:00
|
|
|
.single:
|
2019-05-17 23:50:11 +10:00
|
|
|
call parseHexPair
|
2019-05-11 11:19:34 +10:00
|
|
|
jr c, .error
|
2019-05-19 09:59:58 +10:00
|
|
|
ld e, a
|
2019-05-11 11:19:34 +10:00
|
|
|
cp a ; ensure Z
|
2019-05-10 11:21:08 +10:00
|
|
|
jr .end
|
2019-05-11 11:19:34 +10:00
|
|
|
.error:
|
2019-05-17 23:50:11 +10:00
|
|
|
call unsetZ
|
2019-05-10 11:21:08 +10:00
|
|
|
.end:
|
2019-05-19 09:59:58 +10:00
|
|
|
push de \ pop ix
|
|
|
|
pop de
|
2019-05-10 11:21:08 +10:00
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
|
2019-05-18 00:34:01 +10:00
|
|
|
; Sets Z if (HL) has a '0x' prefix.
|
2019-05-11 11:19:34 +10:00
|
|
|
hasHexPrefix:
|
2019-05-02 04:19:43 +10:00
|
|
|
ld a, (hl)
|
2019-05-11 11:19:34 +10:00
|
|
|
cp '0'
|
|
|
|
ret nz
|
|
|
|
push hl
|
2019-05-02 04:19:43 +10:00
|
|
|
inc hl
|
|
|
|
ld a, (hl)
|
2019-05-11 11:19:34 +10:00
|
|
|
cp 'x'
|
2019-05-10 05:55:29 +10:00
|
|
|
pop hl
|
|
|
|
ret
|
2019-05-11 11:19:34 +10:00
|
|
|
|
2019-05-19 09:59:58 +10:00
|
|
|
; Parse string at (HL) as a binary value (0b010101) and return value in IX.
|
|
|
|
; High IX byte is always clear.
|
2019-05-18 00:34:01 +10:00
|
|
|
; Sets Z on success.
|
|
|
|
parseBinaryLiteral:
|
|
|
|
call hasBinPrefix
|
|
|
|
ret nz
|
|
|
|
push bc
|
|
|
|
push hl
|
2019-05-19 09:59:58 +10:00
|
|
|
push de
|
|
|
|
ld d, 0
|
|
|
|
inc hl ; get rid of "0b"
|
2019-05-18 00:34:01 +10:00
|
|
|
inc hl
|
|
|
|
call strlen
|
|
|
|
or a
|
|
|
|
jr z, .error ; empty, error
|
|
|
|
cp 9
|
|
|
|
jr nc, .error ; >= 9, too long
|
|
|
|
; We have a string of 8 or less chars. What we'll do is that for each
|
|
|
|
; char, we rotate left and set the LSB according to whether we have '0'
|
|
|
|
; or '1'. Error out on anything else. C is our stored result.
|
|
|
|
ld b, a ; we loop for "strlen" times
|
|
|
|
ld c, 0 ; our stored result
|
|
|
|
.loop:
|
|
|
|
rlc c
|
|
|
|
ld a, (hl)
|
|
|
|
inc hl
|
|
|
|
cp '0'
|
|
|
|
jr z, .nobit ; no bit to set
|
|
|
|
cp '1'
|
|
|
|
jr nz, .error ; not 0 or 1
|
|
|
|
; We have a bit to set
|
|
|
|
inc c
|
|
|
|
.nobit:
|
|
|
|
djnz .loop
|
2019-05-19 09:59:58 +10:00
|
|
|
ld e, c
|
2019-05-18 00:34:01 +10:00
|
|
|
cp a ; ensure Z
|
|
|
|
jr .end
|
|
|
|
.error:
|
|
|
|
call unsetZ
|
|
|
|
.end:
|
2019-05-19 09:59:58 +10:00
|
|
|
push de \ pop ix
|
|
|
|
pop de
|
2019-05-18 00:34:01 +10:00
|
|
|
pop hl
|
|
|
|
pop bc
|
|
|
|
ret
|
|
|
|
|
|
|
|
; Sets Z if (HL) has a '0b' prefix.
|
|
|
|
hasBinPrefix:
|
|
|
|
ld a, (hl)
|
|
|
|
cp '0'
|
|
|
|
ret nz
|
|
|
|
push hl
|
|
|
|
inc hl
|
|
|
|
ld a, (hl)
|
|
|
|
cp 'b'
|
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
|
2019-05-15 03:53:12 +10:00
|
|
|
; Parse string at (HL) and, if it is a char literal, sets Z and return
|
2019-05-19 09:59:58 +10:00
|
|
|
; corresponding value in IX. High IX byte is always clear.
|
2019-05-15 03:53:12 +10:00
|
|
|
;
|
|
|
|
; A valid char literal starts with ', ends with ' and has one character in the
|
|
|
|
; middle. No escape sequence are accepted, but ''' will return the apostrophe
|
|
|
|
; character.
|
|
|
|
parseCharLiteral:
|
|
|
|
ld a, 0x27 ; apostrophe (') char
|
|
|
|
cp (hl)
|
|
|
|
ret nz
|
|
|
|
|
|
|
|
push hl
|
2019-05-19 09:59:58 +10:00
|
|
|
push de
|
2019-05-15 03:53:12 +10:00
|
|
|
inc hl
|
|
|
|
inc hl
|
|
|
|
cp (hl)
|
|
|
|
jr nz, .end ; not ending with an apostrophe
|
|
|
|
inc hl
|
|
|
|
ld a, (hl)
|
|
|
|
or a ; cp 0
|
|
|
|
jr nz, .end ; string has to end there
|
|
|
|
; Valid char, good
|
2019-05-19 09:59:58 +10:00
|
|
|
ld d, a ; A is zero, take advantage of that
|
2019-05-15 03:53:12 +10:00
|
|
|
dec hl
|
|
|
|
dec hl
|
|
|
|
ld a, (hl)
|
2019-05-19 09:59:58 +10:00
|
|
|
ld e, a
|
2019-05-15 03:53:12 +10:00
|
|
|
cp a ; ensure Z
|
|
|
|
.end:
|
2019-05-19 09:59:58 +10:00
|
|
|
push de \ pop ix
|
|
|
|
pop de
|
2019-05-15 03:53:12 +10:00
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
|
|
|
|
; Parses the string at (HL) and returns the 16-bit value in IX. The string
|
|
|
|
; can be a decimal literal (1234), a hexadecimal literal (0x1234) or a char
|
|
|
|
; literal ('X').
|
|
|
|
;
|
2019-05-11 11:19:34 +10:00
|
|
|
; As soon as the number doesn't fit 16-bit any more, parsing stops and the
|
|
|
|
; number is invalid. If the number is valid, Z is set, otherwise, unset.
|
2019-05-15 03:53:12 +10:00
|
|
|
parseLiteral:
|
|
|
|
call parseCharLiteral
|
|
|
|
ret z
|
|
|
|
call parseHexadecimal
|
|
|
|
ret z
|
2019-05-18 00:34:01 +10:00
|
|
|
call parseBinaryLiteral
|
|
|
|
ret z
|
2019-05-15 03:53:12 +10:00
|
|
|
jp parseDecimal
|
2019-05-11 11:19:34 +10:00
|
|
|
|
|
|
|
; Parse string in (HL) and return its numerical value whether its a number
|
|
|
|
; literal or a symbol. Returns value in IX.
|
|
|
|
; Sets Z if number or symbol is valid, unset otherwise.
|
|
|
|
parseNumberOrSymbol:
|
2019-05-15 03:53:12 +10:00
|
|
|
call parseLiteral
|
2019-05-11 11:19:34 +10:00
|
|
|
ret z
|
2019-10-05 10:26:21 +10:00
|
|
|
; Not a number.
|
|
|
|
; Is str a single char? If yes, maybe it's a special symbol.
|
|
|
|
call strIs1L
|
|
|
|
jr nz, .symbol ; nope
|
|
|
|
ld a, (hl)
|
|
|
|
cp '$'
|
2019-05-20 23:17:50 +10:00
|
|
|
jr z, .returnPC
|
2019-10-05 10:26:21 +10:00
|
|
|
cp '@'
|
|
|
|
jr nz, .symbol
|
|
|
|
; last val
|
|
|
|
ld ix, (DIREC_LASTVAL)
|
|
|
|
ret
|
|
|
|
.symbol:
|
2019-07-21 08:07:52 +10:00
|
|
|
push de ; --> lvl 1
|
|
|
|
call symFindVal ; --> DE
|
2019-05-20 03:22:14 +10:00
|
|
|
jr nz, .notfound
|
2019-05-14 06:53:52 +10:00
|
|
|
; value in DE. We need it in IX
|
2019-05-19 09:59:58 +10:00
|
|
|
push de \ pop ix
|
2019-07-21 08:07:52 +10:00
|
|
|
pop de ; <-- lvl 1
|
2019-05-14 06:53:52 +10:00
|
|
|
cp a ; ensure Z
|
2019-05-10 05:55:29 +10:00
|
|
|
ret
|
2019-05-20 03:22:14 +10:00
|
|
|
.notfound:
|
2019-07-21 08:07:52 +10:00
|
|
|
pop de ; <-- lvl 1
|
2019-05-20 03:22:14 +10:00
|
|
|
; If not found, check if we're in first pass. If we are, it doesn't
|
|
|
|
; matter that we didn't find our symbol. Return success anyhow.
|
|
|
|
; Otherwise return error. Z is already unset, so in fact, this is the
|
|
|
|
; same as jumping to zasmIsFirstPass
|
|
|
|
jp zasmIsFirstPass
|
2019-05-20 23:17:50 +10:00
|
|
|
|
|
|
|
.returnPC:
|
|
|
|
push hl
|
|
|
|
call zasmGetPC
|
|
|
|
push hl \ pop ix
|
|
|
|
pop hl
|
|
|
|
ret
|