2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 05.08.1998
|
|
|
|
;
|
|
|
|
; CC65 runtime: long equal
|
|
|
|
;
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.export toseqeax
|
|
|
|
.import toslcmp, booleq
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
toseqeax:
|
|
|
|
jsr toslcmp ; Set flags
|
|
|
|
jmp booleq ; Convert to boolean
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
2001-10-01 22:21:16 +00:00
|
|
|
|