]> git.sur5r.net Git - cc65/blobdiff - libsrc/c128/cputc.s
ostype.o: new object file
[cc65] / libsrc / c128 / cputc.s
index 99253d04ab6c066b0479478289484631df2fd56d..c3ffd9ea0350bf10d64079c1d62527c5393af212 100644 (file)
@@ -21,13 +21,13 @@ _cputcxy:
 
 ; Plot a character - also used as internal function
 
-_cputc: cmp    #$0D            ; CR?
+_cputc: cmp            #$0A            ; CR?
        bne     L1
        lda     #0
        sta     CURS_X
                beq     plot            ; Recalculate pointers
 
-L1:    cmp     #$0A            ; LF?
+L1:    cmp     #$0D            ; LF?
                bne     L2
        ldy     CURS_Y
        iny