]> git.sur5r.net Git - cc65/blobdiff - libsrc/runtime/linc.s
no TGI_ERR_NO_MEM or TGI_ERR_NO_IOCB anymore: replaced by TGI_ERR_NO_RES
[cc65] / libsrc / runtime / linc.s
index 1922a07097b44b090078a0a3c94d6a8d6f0759f9..aff3758ee7d9fe3584bbe54b1aa3ae5fdc653193 100644 (file)
@@ -7,16 +7,18 @@
                .export         inceaxy
        .importzp       ptr4, sreg
 
-inceaxy:
+.proc  inceaxy
+
                sty     ptr4
                clc
                adc     ptr4
-               bcc     inceax9
+               bcc     @L9
                inx
-               bne     inceax9
+               bne     @L9
                inc     sreg
-               bne     inceax9
+               bne     @L9
                inc     sreg+1
-inceax9:
-               rts
+@L9:   rts
+
+.endproc