]> git.sur5r.net Git - cc65/blob - leq.s
5f8d6d33d6ce33dc322aad6ab3615387a4df3c5c
[cc65] / 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