home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
asmutl
/
ovl301.arc
/
MULTD.ASM
< prev
next >
Wrap
Assembly Source File
|
1989-02-04
|
303b
|
30 lines
.MODEL large
.DATA
EXTRN messd:FAR
.CODE
PUBLIC multd
multd PROC
call far ptr temp
ret
db 20000 dup (?)
multd ENDP
temp proc
jmp far ptr temp2
dw 10000 dup (seg messd)
temp2:
mov ax,dgroup
mov ds,ax
mov dx,offset messd
mov ah,9
int 21h
ret
temp endp
END