mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
27 lines
245 B
ArmAsm
27 lines
245 B
ArmAsm
|
;
|
||
|
; Ullrich von Bassewitz, 06.08.1998
|
||
|
;
|
||
|
; CC65 runtime: long complement
|
||
|
;
|
||
|
|
||
|
.export compleax
|
||
|
.importzp sreg
|
||
|
|
||
|
; eax = ~eax
|
||
|
|
||
|
compleax:
|
||
|
eor #$FF
|
||
|
pha
|
||
|
txa
|
||
|
eor #$FF
|
||
|
tax
|
||
|
lda sreg
|
||
|
eor #$FF
|
||
|
sta sreg
|
||
|
lda sreg+1
|
||
|
eor #$FF
|
||
|
sta sreg+1
|
||
|
pla
|
||
|
rts
|
||
|
|