home *** CD-ROM | disk | FTP | other *** search
- ; initialise Zenith 151 hard disk driver and reboot
- ;
- ; thanks to James Vahl for this program.
-
- absc800 segment at 0c800h
- org 3
- Init_Hard_Disk label far
- absc800 ends
-
- _text segment byte public 'CODE'
- assume cs:_text,ds:_text
- org 100h
- start proc near
- call Init_Hard_Disk
-
- ;------ display message
- mov dx,offset open
- mov ah,09
- int 21h
-
- ; ----- wait for a key
- mov ah,0
- int 16h
-
- ; ----- reboot
- int 19h
-
- open db 10,13,'Please open drive A door then press any key...$'
-
- _text ends
- end start
-