home *** CD-ROM | disk | FTP | other *** search
- ;
- ; VFOS_DEL VFOSSIL remover by Bob Hartman.
- ; Copyright 1988 by Spark Software. ALL RIGHTS RESERVED.
- ;
-
- code segment para public 'code'
- assume cs:code,ds:code
-
- org 100h
- vfos_del: jmp start
-
- my_intro db 'VFOS_DEL VFOSSIL Removal Program Revision: 1.00',13,10,10
- db '(C) Copyright 1988 by Bob Hartman and Spark Software, Inc.',13,10,'$'
-
- start:
- mov dx,offset my_intro
- mov ah,9
- int 21h
- mov ah,81h
- mov al,3
- int 14h
- int 20h
- code ends
- end vfos_del
-
-
-
-
-