mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
15 lines
212 B
ArmAsm
15 lines
212 B
ArmAsm
|
;
|
||
|
; Ullrich von Bassewitz, 07.08.1998
|
||
|
;
|
||
|
; CC65 runtime: Compare > for long ints
|
||
|
;
|
||
|
|
||
|
.export tosgteax
|
||
|
.import lcmp, boolgt
|
||
|
|
||
|
tosgteax:
|
||
|
jsr lcmp ; Set the flags
|
||
|
jmp boolgt ; Convert to boolean
|
||
|
|
||
|
|