home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / SOURCE.ZIP / HOST.ASM < prev    next >
Assembly Source File  |  1993-03-20  |  476b  |  20 lines

  1.  
  2.  
  3.                 .model  tiny
  4.  
  5.                 .code
  6.  
  7. ;******************************************************************************
  8. ;The host program starts here. This one is a dummy that just returns control
  9. ;to DOS.
  10.                 org     100H
  11.  
  12. HOST:
  13.                 db      100 dup (90H)           ;nop's
  14.                 mov     ax,4C00H                ;Terminate, error code = 0
  15.                 int     21H
  16.  
  17. HOST_END:
  18.  
  19.                 END     HOST
  20.