1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-12 02:30:44 +00:00

Fixed a bug in pushw0sp

git-svn-id: svn://svn.cc65.org/cc65/trunk@1604 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-11-23 16:21:35 +00:00
parent ac61d6826c
commit 56350d81e0

View File

@ -10,7 +10,7 @@
.macpack generic
pushw0sp:
ldy #2
ldy #3
pushwysp:
lda sp ; 3
sub #2 ; 4
@ -28,4 +28,4 @@ pushwysp:
sta (sp),y ; 5
rts