Changed literal zeroes of the style "#>0" into the style "#>$0000".

This commit is contained in:
Greg King
2014-09-10 19:15:07 -04:00
parent e702832e80
commit 74c2415795
16 changed files with 75 additions and 69 deletions

View File

@@ -1,7 +1,7 @@
;
; int fastcall vcscanf(const char* format, va_list ap);
;
; 2005-01-02, Greg King
; 2014-09-10, Greg King
;
.export _vcscanf
@@ -44,7 +44,7 @@ get: ldx pushed
; Return the old, pushed-back character (instead of getting a new one).
;
dex ; ldx #>0
dex ; ldx #>$0000
stx pushed
lda back
rts
@@ -58,7 +58,7 @@ L1: jsr _cgetc
pha
jsr _cputc
pla
ldx #>0
ldx #>$0000
rts