]> git.sur5r.net Git - cc65/blob - libsrc/runtime/leq.s
This commit was generated by cvs2svn to compensate for changes in r2,
[cc65] / libsrc / runtime / leq.s
1 ;
2 ; Ullrich von Bassewitz, 05.08.1998
3 ;
4 ; CC65 runtime: long equal
5 ;
6
7         .export         toseqeax
8         .import         lcmp, booleq
9
10 toseqeax:
11         jsr     lcmp            ; Set flags
12         jmp     booleq          ; Convert to boolean
13
14
15