home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Unsorted BBS Collection
/
thegreatunsorted.tar
/
thegreatunsorted
/
programming
/
asm_programming
/
ASMFILES.ZIP
/
STDINCK.ASM
< prev
next >
Wrap
Assembly Source File
|
1985-06-21
|
256b
|
11 lines
;ROUTINE TO CHECK FOR STANDARD INPUT
;
stdinck proc far
push dx
mov dl,0FFh
mov ah,06h
int 21h
pop dx
ret
stdinck endp