few 6502 and some 65SC02 optimizations
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
;
|
||||
; Ullrich von Bassewitz, 05.08.1998
|
||||
; Christian Krueger, 11-Mar-2017, added 65SC02 optimization
|
||||
;
|
||||
; CC65 runtime: or on ints
|
||||
;
|
||||
@@ -8,13 +9,20 @@
|
||||
.import addysp1
|
||||
.importzp sp, tmp1
|
||||
|
||||
.macpack cpu
|
||||
|
||||
tosora0:
|
||||
ldx #$00
|
||||
tosorax:
|
||||
.if (.cpu .bitand ::CPU_ISET_65SC02)
|
||||
ora (sp)
|
||||
ldy #1
|
||||
.else
|
||||
ldy #0
|
||||
ora (sp),y
|
||||
sta tmp1
|
||||
iny
|
||||
.endif
|
||||
sta tmp1
|
||||
txa
|
||||
ora (sp),y
|
||||
tax
|
||||
|
||||
Reference in New Issue
Block a user