]> git.sur5r.net Git - cc65/blobdiff - libsrc/geos/memory/doublespop.s
Remove unused imports
[cc65] / libsrc / geos / memory / doublespop.s
index 4fd6849f53e8d139d2598e35d340d7f66b82a654..1202bf655964a0c22747b7b7af93261c18212d91 100644 (file)
@@ -1,12 +1,13 @@
 
 ;
-; Maciej 'YTM/Alliance' Witkowiak
+; Maciej 'YTM/Elysium' Witkowiak
 ;
-; 22.12.99
+; 22.12.99, 29.07.2000
 
            .import popax
            .importzp ptr3, ptr4
            .export DoubleSPop
+           .export SetPtrXY
 
            .include "../inc/geossym.inc"
 
@@ -16,6 +17,12 @@ DoubleSPop:
            jsr popax
            sta ptr3
            stx ptr3+1
-           lda #ptr4
-           ldx #ptr3
+;          rts
+;
+; SetPtrXY can be sometimes executed twice, but even this way it is few cycles
+; faster...
+
+SetPtrXY:
+           ldx #ptr4
+           ldy #ptr3
            rts