home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 7
/
07.iso
/
c
/
c010
/
1.ddi
/
FLILIB3.ZIP
/
FLISRC3.ZIP
/
FCOMPARE.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Assembly Source File
|
1990-08-29
|
384 b
|
34 lines
dosseg
.model large
.code
PUBLIC _i86_wcompare
;i86_wcompare(s1, s2, count)
_i86_wcompare PROC far
push bp
mov bp,sp
push ds
push si
push di
cld
lds si,[bp+4+2]
les di,[bp+8+2]
mov cx,[bp+12+2]
inc cx
repe cmpsw
mov ax,[bp+12+2]
sub ax,cx
pop di
pop si
pop ds
pop bp
ret
_i86_wcompare ENDP
END