Blame |
Last modification |
View Log
| Download
| RSS feed
cpu 8051
page 0
; NOTE: The if construct only works because of short circuit
; evaluation of the && operator. If a symbol is forward-defined,
; the lhs will evaluate to false in the first pass, and
; the rhs will not be evaluated at all, so no error message
; about things having to be defined in pass one:
jz macro target
if (defined(target) || (mompass>1)) && (abs($-(target)) <= 125)
!jz target
elseif
!jnz +
jmp target
endif
+
endm
bk2 nop
db 128 dup (0)
bk1 nop
jz bk1
jz bk2
jz fwd1
jz fwd2
nop
nop
nop
fwd1 db 128 dup (0)
fwd2 nop