]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/sprintf.s
The spans do now contain the size of a span, no longer the end offset.
[cc65] / libsrc / common / sprintf.s
index 0788f9f35b23dd4832ab70374e39a9d87ee90e74..1b196450a842d7d8d08881a5e31f138952ace739 100644 (file)
@@ -5,7 +5,7 @@
 ;
 
        .export         _sprintf
-       .import         pushax, addysp, subysp, _vsprintf
+       .import         pushax, addysp, decsp4, _vsprintf
        .importzp       sp, ptr1
 
        .macpack        generic
@@ -28,13 +28,12 @@ _sprintf:
 
 ; We have to push buf and format, both in the order they already have on stack.
 ; To make this somewhat more efficient, we will create space on the stack and
-; the do a copy of the complete block instead of pushing each parameter
+; then do a copy of the complete block instead of pushing each parameter
 ; separately. Since the size of the arguments passed is the same as the size
 ; of the fixed arguments, this will allow us to calculate the pointer to the
 ; fixed size arguments easier (they're just ParamSize bytes away).
 
-       ldy     #4
-       jsr     subysp
+       jsr     decsp4
 
 ; Calculate a pointer to the Format argument