mirror of
https://github.com/cc65/cc65.git
synced 2026-04-22 01:16:54 +00:00
Improved 65c02 support
git-svn-id: svn://svn.cc65.org/cc65/trunk@2507 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -8,6 +8,8 @@
|
||||
.import pushax
|
||||
.importzp ptr1
|
||||
|
||||
.macpack cpu
|
||||
|
||||
pushbidx:
|
||||
sty ptr1
|
||||
clc
|
||||
@@ -16,9 +18,9 @@ pushbidx:
|
||||
inx
|
||||
pushb: sta ptr1
|
||||
stx ptr1+1
|
||||
ldx #0 ; Load index/high byte
|
||||
.ifpc02
|
||||
lda (ptr1) ; Save one cycle for the C02
|
||||
ldx #0 ; Load index/high byte
|
||||
.if (.cpu .bitand CPU_ISET_65SC02)
|
||||
lda (ptr1) ; Save one cycle for the C02
|
||||
.else
|
||||
lda (ptr1,x)
|
||||
.endif
|
||||
|
||||
Reference in New Issue
Block a user