Utility to test if Drive a: is ready.
	

Batch file Fragment:
==========================
@echo off
:LoopMe
echo.
echo.
echo Please remove the floppy disk from the drive then
echo.
pause
echo.
IsAReady.com
if not errorlevel 1 goto LoopMe
reboot.com
==========================

To create isaready.com, cut the text below into a file named isaready.scr
You need to leave 2 blank lines below the Q at the end.
At the DOS prompt type:
	type isaready.scr | debug

This will create isaready.com
Use the batch file code above for your test.

Cut Here
--------------------------
N ISAREADY.COM
E 0100 B8 24 25 BA 13 01 CD 21
E 0108 B4 1C B2 01 CD 21 B8 00
E 0110 4C CD 21 B8 01 4C CD 21
RCX
0018
W
Q




More re-boot code.

CLDBOOT  SCR
	Cold boots the PC
cut here --\/
-------------------------------------
A 0100
MOV AX,40
MOV DS,AX
JMP FFFF:0000

N CLDBOOT.COM
RCX
10
W
Q



REBOOT   SCR
	Warm boots the PC
cut here --\/
-------------------------------------
A 0100
MOV AX,40
MOV DS,AX
MOV WORD PTR [72],1234
JMP FFFF:0000

N REBOOT.COM
RCX
10
W
Q

