]> git.sur5r.net Git - cc65/blob - libsrc/runtime/ne.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / runtime / ne.s
1 ;
2 ; Ullrich von Bassewitz, 06.08.1998
3 ;
4 ; CC65 runtime: Compare != for ints
5 ;
6
7         .export         tosne00, tosnea0, tosneax
8         .import         tosicmp, boolne
9
10 tosne00:
11         lda     #$00
12 tosnea0:
13         ldx     #$00
14 tosneax:
15         jsr     tosicmp         ; Set flags
16         jmp     boolne          ; Convert to boolean
17
18