home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BBS 1
/
BBS#1.iso
/
for-dos
/
addsecur.ha
/
ADDSECUR.ASM
next >
Wrap
Assembly Source File
|
1995-03-25
|
628b
|
26 lines
assume cs:code,ds:code
code segment public word 'CODE'
org 100h
Begin:
mov ah,9
mov dx,offset Copy
int 21h
extrn Polling:near
call Polling
mov dx,offset Error
jc @@1
mov dx,offset Ok
@@1:
mov ah,9
int 21h
mov ax,4C00h
int 21h
Copy db 'Searching mail messages...'
db ' ',0Ah,0Dh,0Ah,'$'
Error db 'No mail messages found',0Ah,0Dh,'$'
Ok db 'Finished.',0Ah,0Dh,'$'
code ends
end Begin