]> git.sur5r.net Git - cc65/blob - libsrc/runtime/lne.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / runtime / lne.s
1 ;
2 ; Ullrich von Bassewitz, 05.08.1998
3 ;
4 ; CC65 runtime: long not equal
5 ;
6
7         .export         tosneeax
8         .import         toslcmp, boolne
9
10 tosneeax:
11         jsr     toslcmp         ; Set flags
12         jmp     boolne          ; Convert to boolean
13
14