You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
262 B
ArmAsm
23 lines
262 B
ArmAsm
12 years ago
|
;
|
||
|
; Ullrich von Bassewitz, 06.08.1998
|
||
|
;
|
||
|
; CC65 runtime: boolean negation for longs
|
||
|
;
|
||
|
|
||
|
.export bnegeax
|
||
|
.importzp sreg, tmp1
|
||
|
|
||
|
bnegeax:
|
||
|
stx tmp1
|
||
|
ldx #0 ; High byte of result
|
||
|
ora tmp1
|
||
|
ora sreg
|
||
|
ora sreg+1
|
||
|
bne @L0
|
||
|
lda #1
|
||
|
rts
|
||
|
|
||
|
@L0: txa ; X is zero
|
||
|
rts
|
||
|
|