mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-27 14:18:06 +11:00
zasm: add support for hex literals
This commit is contained in:
parent
b87feac785
commit
5a6078df4d
@ -2,7 +2,7 @@
|
|||||||
; result in A.
|
; result in A.
|
||||||
;
|
;
|
||||||
; On success, the carry flag is reset. On error, it is set.
|
; On success, the carry flag is reset. On error, it is set.
|
||||||
parseDecimal:
|
parseDecimalDigit:
|
||||||
; First, let's see if we have an easy 0-9 case
|
; First, let's see if we have an easy 0-9 case
|
||||||
cp '0'
|
cp '0'
|
||||||
ret c ; if < '0', we have a problem
|
ret c ; if < '0', we have a problem
|
||||||
@ -12,10 +12,9 @@ parseDecimal:
|
|||||||
ccf ; invert C flag
|
ccf ; invert C flag
|
||||||
ret
|
ret
|
||||||
|
|
||||||
; Parses the string at (HL) and returns the 16-bit value in IX.
|
; Parse string at (HL) as a decimal value and return value in IX under the
|
||||||
; As soon as the number doesn't fit 16-bit any more, parsing stops and the
|
; same conditions as parseNumber.
|
||||||
; number is invalid. If the number is valid, Z is set, otherwise, unset.
|
parseDecimal:
|
||||||
parseNumber:
|
|
||||||
push hl
|
push hl
|
||||||
push de
|
push de
|
||||||
push bc
|
push bc
|
||||||
@ -25,7 +24,7 @@ parseNumber:
|
|||||||
ld a, (hl)
|
ld a, (hl)
|
||||||
cp 0
|
cp 0
|
||||||
jr z, .end ; success!
|
jr z, .end ; success!
|
||||||
call parseDecimal
|
call parseDecimalDigit
|
||||||
jr c, .error
|
jr c, .error
|
||||||
|
|
||||||
; Now, let's add A to IX. First, multiply by 10.
|
; Now, let's add A to IX. First, multiply by 10.
|
||||||
@ -58,3 +57,59 @@ parseNumber:
|
|||||||
pop de
|
pop de
|
||||||
pop hl
|
pop hl
|
||||||
ret
|
ret
|
||||||
|
|
||||||
|
|
||||||
|
; Parse string at (HL) as a hexadecimal value and return value in IX under the
|
||||||
|
; same conditions as parseNumber.
|
||||||
|
parseHexadecimal:
|
||||||
|
push hl
|
||||||
|
xor a
|
||||||
|
ld ixh, a
|
||||||
|
inc hl ; get rid of "0x"
|
||||||
|
inc hl
|
||||||
|
call strlen
|
||||||
|
cp 3
|
||||||
|
jr c, .single
|
||||||
|
cp 5
|
||||||
|
jr c, .double
|
||||||
|
; too long, error
|
||||||
|
jr .error
|
||||||
|
.double:
|
||||||
|
call JUMP_PARSEHEXPAIR ; moves HL to last char of pair
|
||||||
|
jr c, .error
|
||||||
|
inc hl ; now HL is on first char of next pair
|
||||||
|
ld ixh, a
|
||||||
|
.single:
|
||||||
|
call JUMP_PARSEHEXPAIR
|
||||||
|
jr c, .error
|
||||||
|
ld ixl, a
|
||||||
|
cp a ; ensure Z
|
||||||
|
jr .end
|
||||||
|
.error:
|
||||||
|
call JUMP_UNSETZ
|
||||||
|
.end:
|
||||||
|
pop hl
|
||||||
|
ret
|
||||||
|
|
||||||
|
; Sets Z if (HL) has a '0x' or '0X' prefix.
|
||||||
|
hasHexPrefix:
|
||||||
|
ld a, (hl)
|
||||||
|
cp '0'
|
||||||
|
ret nz
|
||||||
|
push hl
|
||||||
|
inc hl
|
||||||
|
ld a, (hl)
|
||||||
|
cp 'x'
|
||||||
|
jr z, .end
|
||||||
|
cp 'X'
|
||||||
|
.end:
|
||||||
|
pop hl
|
||||||
|
ret
|
||||||
|
|
||||||
|
; Parses the string at (HL) and returns the 16-bit value in IX.
|
||||||
|
; 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.
|
||||||
|
parseNumber:
|
||||||
|
call hasHexPrefix
|
||||||
|
jr z, parseHexadecimal
|
||||||
|
jr parseDecimal
|
||||||
|
@ -5,7 +5,8 @@ label1:
|
|||||||
; comment
|
; comment
|
||||||
.db 42
|
.db 42
|
||||||
label2:
|
label2:
|
||||||
.dw 42
|
.dw 0x42
|
||||||
.dw 3742
|
.dw 3742
|
||||||
|
.dw 0x3742
|
||||||
ld a, (label1)
|
ld a, (label1)
|
||||||
ld hl, label2
|
ld hl, label2
|
||||||
|
@ -12,6 +12,7 @@ jp upcase
|
|||||||
jp unsetZ
|
jp unsetZ
|
||||||
jp intoDE
|
jp intoDE
|
||||||
jp findchar
|
jp findchar
|
||||||
|
jp parseHexPair
|
||||||
|
|
||||||
init:
|
init:
|
||||||
di
|
di
|
||||||
|
@ -6,6 +6,7 @@ JUMP_UPCASE .equ 0x0b
|
|||||||
JUMP_UNSETZ .equ 0x0e
|
JUMP_UNSETZ .equ 0x0e
|
||||||
JUMP_INTODE .equ 0x11
|
JUMP_INTODE .equ 0x11
|
||||||
JUMP_FINDCHAR .equ 0x14
|
JUMP_FINDCHAR .equ 0x14
|
||||||
|
JUMP_PARSEHEXPAIR .equ 0x17
|
||||||
|
|
||||||
.equ USER_CODE 0x4000
|
.equ USER_CODE 0x4000
|
||||||
.equ RAMSTART 0x6000
|
.equ RAMSTART 0x6000
|
||||||
|
Loading…
Reference in New Issue
Block a user