]> git.sur5r.net Git - cc65/blob - libsrc/runtime/lgt.s
Made the code that logs indirect-goto referals be a little more efficient.
[cc65] / libsrc / runtime / lgt.s
1 ;
2 ; Ullrich von Bassewitz, 07.08.1998
3 ;
4 ; CC65 runtime: Compare > for long ints
5 ;
6
7         .export         tosgteax
8         .import         toslcmp, boolgt
9
10 tosgteax:
11         jsr     toslcmp         ; Set the flags
12         jmp     boolgt          ; Convert to boolean
13
14