2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 07.08.1998
|
|
|
|
;
|
|
|
|
; CC65 runtime: Compare > for long ints
|
|
|
|
;
|
|
|
|
|
|
|
|
.export tosgteax
|
2001-10-01 22:21:16 +00:00
|
|
|
.import toslcmp, boolgt
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
tosgteax:
|
2001-10-01 22:21:16 +00:00
|
|
|
jsr toslcmp ; Set the flags
|
2000-05-28 13:40:48 +00:00
|
|
|
jmp boolgt ; Convert to boolean
|
|
|
|
|
|
|
|
|