]> git.sur5r.net Git - cc65/blobdiff - libsrc/runtime/lcmp.s
no TGI_ERR_NO_MEM or TGI_ERR_NO_IOCB anymore: replaced by TGI_ERR_NO_RES
[cc65] / libsrc / runtime / lcmp.s
index 47394398ea3b4ec15facfe9b026bf0b56b8bcd43..4e50aa538f89cc5a79c5f0e13adde59c7b201d22 100644 (file)
@@ -1,56 +1,56 @@
-;\r
-; Piotr Fusik, 15.04.2002\r
-; originally by Ullrich von Bassewitz\r
-;\r
-; Long int compare function - used by the compare operators\r
-;\r
-\r
-       .export         toslcmp\r
-       .import         incsp4\r
-       .importzp       sp, sreg, ptr1\r
-\r
-\r
-toslcmp:\r
-       sta     ptr1\r
-       stx     ptr1+1          ; EAX now in sreg:ptr1\r
-\r
-       ldy     #$03\r
-       lda     (sp),y\r
-       sec\r
-       sbc     sreg+1\r
-       bne     L4\r
-\r
-       dey\r
-       lda     (sp),y\r
-       cmp     sreg\r
-       bne     L1\r
-\r
-       dey\r
-       lda     (sp),y\r
-       cmp     ptr1+1\r
-       bne     L1\r
-\r
-       dey\r
-       lda     (sp),y\r
-       cmp     ptr1\r
-\r
-L1:    php                     ; Save flags\r
-       jsr     incsp4          ; Drop TOS\r
-       plp                     ; Restore the flags\r
-       beq     L2\r
-       bcs     L3\r
-       lda     #$FF            ; Set the N flag\r
-L2:    rts\r
-\r
-L3:    lda     #$01            ; Clear the N flag\r
-       rts\r
-\r
-L4:    bvc     L5\r
-       eor     #$FF            ; Fix the N flag if overflow\r
-       ora     #$01            ; Clear the Z flag\r
-L5:    php                     ; Save flags\r
-       jsr     incsp4          ; Drop TOS\r
-       plp                     ; Restore flags\r
-       rts\r
-\r
-\r
+;
+; Piotr Fusik, 15.04.2002
+; originally by Ullrich von Bassewitz
+;
+; Long int compare function - used by the compare operators
+;
+
+       .export         toslcmp
+       .import         incsp4
+       .importzp       sp, sreg, ptr1
+
+
+toslcmp:
+       sta     ptr1
+       stx     ptr1+1          ; EAX now in sreg:ptr1
+
+       ldy     #$03
+       lda     (sp),y
+       sec
+       sbc     sreg+1
+       bne     L4
+
+       dey
+       lda     (sp),y
+       cmp     sreg
+       bne     L1
+
+       dey
+       lda     (sp),y
+       cmp     ptr1+1
+       bne     L1
+
+       dey
+       lda     (sp),y
+       cmp     ptr1
+
+L1:    php                     ; Save flags
+       jsr     incsp4          ; Drop TOS
+       plp                     ; Restore the flags
+       beq     L2
+       bcs     L3
+       lda     #$FF            ; Set the N flag
+L2:    rts
+
+L3:    lda     #$01            ; Clear the N flag
+       rts
+
+L4:    bvc     L5
+       eor     #$FF            ; Fix the N flag if overflow
+       ora     #$01            ; Clear the Z flag
+L5:    php                     ; Save flags
+       jsr     incsp4          ; Drop TOS
+       plp                     ; Restore flags
+       rts
+
+