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

32 lines
603 B
ArmAsm
Raw Normal View History

;
; Ullrich von Bassewitz, 05.08.1998
2017-03-12 22:21:43 +00:00
; Christian Krueger, 11-Mar-2017, added 65SC02 optimization
;
; CC65 runtime: or on ints
;
.export tosora0, tosorax
.import addysp1
.importzp sp, tmp1
2017-03-12 22:21:43 +00:00
.macpack cpu
tosora0:
ldx #$00
tosorax:
2017-03-12 22:21:43 +00:00
.if (.cpu .bitand ::CPU_ISET_65SC02)
ora (sp)
ldy #1
.else
ldy #0
ora (sp),y
iny
2022-04-17 14:06:22 +00:00
.endif
2017-03-12 22:21:43 +00:00
sta tmp1
txa
ora (sp),y
tax
lda tmp1
jmp addysp1 ; drop TOS, set condition codes