mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
20 lines
355 B
ArmAsm
20 lines
355 B
ArmAsm
;
|
|
; Maciej 'YTM/Elysium' Witkowiak
|
|
;
|
|
; 22.12.1999, 2.1.2003
|
|
|
|
; char CmpString (char *dest, char* source);
|
|
|
|
.import DoubleSPop
|
|
.import return0, return1
|
|
.export _CmpString
|
|
|
|
.include "jumptab.inc"
|
|
|
|
_CmpString:
|
|
jsr DoubleSPop
|
|
jsr CmpString
|
|
bne L1
|
|
jmp return0
|
|
L1: jmp return1
|