Upload
This commit is contained in:
commit
43352ff262
1291 changed files with 220976 additions and 0 deletions
26
PANIC/ASMYT.ASM
Normal file
26
PANIC/ASMYT.ASM
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
IDEAL
|
||||
MODEL large
|
||||
P386
|
||||
|
||||
CODESEG
|
||||
|
||||
PUBLIC C copyline
|
||||
|
||||
PROC C copyline
|
||||
|
||||
ARG from:dword, to:dword, count:word
|
||||
|
||||
push ds si di
|
||||
|
||||
lds si, [from]
|
||||
les di, [to]
|
||||
mov cx, [count]
|
||||
|
||||
cld
|
||||
rep movsw
|
||||
|
||||
pop di si ds
|
||||
ret
|
||||
ENDP
|
||||
|
||||
END
|
||||
Loading…
Reference in a new issue