few 6502 and some 65SC02 optimizations
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
;
|
||||
; Ullrich von Bassewitz, 29.12.1999
|
||||
; Christian Krueger, 11-Mar-2017, added 65SC02 optimization
|
||||
;
|
||||
; CC65 runtime: long pop
|
||||
;
|
||||
@@ -8,6 +9,7 @@
|
||||
.import incsp4
|
||||
.importzp sp, sreg
|
||||
|
||||
.macpack cpu
|
||||
|
||||
popeax: ldy #3
|
||||
lda (sp),y
|
||||
@@ -18,8 +20,12 @@ popeax: ldy #3
|
||||
dey
|
||||
lda (sp),y
|
||||
tax
|
||||
.if (.cpu .bitand ::CPU_ISET_65SC02)
|
||||
lda (sp)
|
||||
.else
|
||||
dey
|
||||
lda (sp),y
|
||||
.endif
|
||||
jmp incsp4
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user