home *** CD-ROM | disk | FTP | other *** search
/ BBS 1 / BBS#1.iso / for-dos / addsecur.ha / ADDSECUR.ASM next >
Assembly Source File  |  1995-03-25  |  628b  |  26 lines

  1.         assume  cs:code,ds:code
  2. code    segment public word 'CODE'
  3.         org     100h
  4. Begin:
  5.         mov     ah,9
  6.         mov     dx,offset Copy
  7.         int     21h
  8.  
  9.         extrn   Polling:near
  10.         call    Polling
  11.         mov     dx,offset Error
  12.         jc      @@1
  13.         mov     dx,offset Ok
  14. @@1:
  15.         mov     ah,9
  16.         int     21h
  17.         mov     ax,4C00h
  18.         int     21h
  19.  
  20. Copy    db      'Searching mail messages...'
  21.         db      ' ',0Ah,0Dh,0Ah,'$'
  22. Error   db      'No mail messages found',0Ah,0Dh,'$'
  23. Ok      db      'Finished.',0Ah,0Dh,'$'
  24. code    ends
  25.         end     Begin
  26.