1
0
mirror of https://github.com/cc65/cc65.git synced 2026-02-08 05:16:49 +00:00
Files
cc65/libsrc/runtime/lor.s

47 lines
891 B
ArmAsm

;
; Ullrich von Bassewitz, 06.08.1998
; Christian Krueger, 11-Mar-2017, added 65SC02 optimization
;
; CC65 runtime: or on longs
;
.export tosor0ax, tosoreax
.import addysp1
.importzp c_sp, sreg, tmp1
tosor0ax:
.if .cap(CPU_HAS_STZ)
stz sreg
stz sreg+1
.else
ldy #$00
sty sreg
sty sreg+1
.endif
tosoreax:
.if .cap(CPU_HAS_ZPIND)
ora (c_sp)
ldy #1
.else
ldy #0
ora (c_sp),y ; byte 0
iny
.endif
sta tmp1
txa
ora (c_sp),y ; byte 1
tax
iny
lda sreg
ora (c_sp),y ; byte 2
sta sreg
iny
lda sreg+1
ora (c_sp),y ; byte 3
sta sreg+1
lda tmp1
jmp addysp1