2019-11-15 08:59:26 -05:00
|
|
|
.equ foo 456 ; AFTER_ORG should not get that value
|
|
|
|
.org 0x1234
|
|
|
|
.equ AFTER_ORG @
|
|
|
|
.org 0
|
|
|
|
|
2019-05-28 15:56:39 -04:00
|
|
|
jp test
|
|
|
|
|
2019-11-14 21:16:36 -05:00
|
|
|
dummyLabel:
|
2019-05-28 15:56:39 -04:00
|
|
|
testNum: .db 1
|
|
|
|
|
2019-11-14 21:16:36 -05:00
|
|
|
.equ dummyLabel 0x42
|
|
|
|
|
2019-05-28 15:56:39 -04:00
|
|
|
test:
|
|
|
|
ld hl, 0xffff
|
|
|
|
ld sp, hl
|
|
|
|
|
2019-06-04 11:53:02 -04:00
|
|
|
; *** Just little z80 flags memo.
|
|
|
|
and a ; clear carry
|
|
|
|
ld hl, 100
|
|
|
|
ld de, 101
|
|
|
|
sbc hl, de
|
|
|
|
jp nc, fail ; carry is set
|
|
|
|
call nexttest
|
|
|
|
|
|
|
|
and a ; clear carry
|
|
|
|
ld hl, 101
|
|
|
|
ld de, 100
|
|
|
|
sbc hl, de
|
|
|
|
jp c, fail ; carry is reset
|
|
|
|
call nexttest
|
|
|
|
|
|
|
|
ld a, 1
|
|
|
|
dec a
|
|
|
|
jp m, fail ; positive
|
|
|
|
dec a
|
|
|
|
jp p, fail ; negative
|
|
|
|
call nexttest
|
|
|
|
|
2019-11-14 21:16:36 -05:00
|
|
|
; Test that .equ can override label
|
|
|
|
ld a, 0x42
|
|
|
|
ld hl, dummyLabel
|
|
|
|
cp l
|
|
|
|
jp nz, fail
|
|
|
|
call nexttest
|
|
|
|
|
2019-11-15 08:59:26 -05:00
|
|
|
; test that "@" is updated by a .org directive
|
|
|
|
ld hl, AFTER_ORG
|
|
|
|
ld de, 0x1234
|
2019-12-12 15:53:14 -05:00
|
|
|
or a ; clear carry
|
|
|
|
sbc hl, de
|
2019-05-31 11:12:29 -04:00
|
|
|
jp nz, fail
|
|
|
|
call nexttest
|
|
|
|
|
2019-05-28 15:56:39 -04:00
|
|
|
; success
|
|
|
|
xor a
|
|
|
|
halt
|
|
|
|
|
|
|
|
nexttest:
|
|
|
|
ld a, (testNum)
|
|
|
|
inc a
|
|
|
|
ld (testNum), a
|
|
|
|
ret
|
|
|
|
|
|
|
|
fail:
|
|
|
|
ld a, (testNum)
|
|
|
|
halt
|
2019-11-15 08:59:26 -05:00
|
|
|
|