]> git.sur5r.net Git - cc65/blob - libsrc/runtime/lugt.s
lseek: Return EINVAL if new position is less than 0 or greater than 2^24 - 1.
[cc65] / libsrc / runtime / lugt.s
1 ;
2 ; Ullrich von Bassewitz, 10.12.1998
3 ;
4 ; CC65 runtime: Compare > for long unsigneds
5 ;
6
7         .export         tosugteax
8         .import         toslcmp, boolugt
9
10 tosugteax:
11         jsr     toslcmp         ; Set the flags
12         jmp     boolugt         ; Convert to boolean
13
14