home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1997 August / PCO0897.ISO / filesbbs / dos / bdos_xr5.arj / VFOSSIL / VFOS_SRC.ZIP / VFOS_DEL.ASM < prev    next >
Encoding:
Assembly Source File  |  1992-12-12  |  611 b   |  29 lines

  1. ;
  2. ; VFOS_DEL VFOSSIL remover by Bob Hartman.
  3. ; Copyright 1988 by Spark Software.  ALL RIGHTS RESERVED.
  4. ;
  5.  
  6. code     segment para public 'code'
  7.          assume  cs:code,ds:code
  8.  
  9.          org     100h
  10. vfos_del: jmp    start
  11.  
  12. my_intro  db     'VFOS_DEL VFOSSIL Removal Program Revision: 1.00',13,10,10
  13.         db     '(C) Copyright 1988 by Bob Hartman and Spark Software, Inc.',13,10,'$'
  14.  
  15. start:
  16.         mov     dx,offset my_intro
  17.         mov     ah,9
  18.         int     21h
  19.         mov     ah,81h
  20.         mov     al,3
  21.         int     14h
  22.         int     20h
  23. code    ends
  24.     end vfos_del
  25.  
  26.  
  27.  
  28.  
  29.