]> 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 c3e29cb7ca6f77e55215fb8f615f8789597dee7e..1b196450a842d7d8d08881a5e31f138952ace739 100644 (file)
@@ -28,7 +28,7 @@ _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).