1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00
cc65/libsrc/runtime/lcompl.s

27 lines
395 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