1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-04 13:29:35 +00:00
cc65/libsrc/runtime/lcompl.s

27 lines
245 B
ArmAsm
Raw Normal View History

;
; 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