Name: Anonymous 2008-08-26 20:13
I have a floppy disk that boots MS-DOS and executes some commands.
The last command I want it to run is something that loads the hard disk boot sector in and jumps to it, thus relinquishing control from DOS.
My code is:
but this just hangs. Any ideas what could be going wrong?
The last command I want it to run is something that loads the hard disk boot sector in and jumps to it, thus relinquishing control from DOS.
My code is:
mov ax, 201h
mov bx, 7c00h
xor cx, cx
mov es, cx
inc cx
mov dx, 80h
int 13h
jmp 0:7c00hbut this just hangs. Any ideas what could be going wrong?