using NASM I've assembled these few lines:
;*********************************************
; - A Simple Bootloader
;*********************************************
org 0x7c00 ; We are loaded by BIOS at 0x7C00
bits 16 ; We are still in 16 bit Real Mode
Start:
cli ; Clear all Interrupts
hlt ; halt the system
times 510 - ($-$$) db 0 ; We have to be 512 bytes.Clear the rest of the bytes with0
dw 0xAA55 ; Boot Signiture
using this command:
prompt/>nasm -f bin Boot1.asm -o Boot1.bin
I use VFD to create a virtual floppy drive. The virtual drive is working fine and its properties shows 0 bytes used space and 1.38 MB as free space. The problem comes when attempting to copy boot.bin to the virtual floppy using following command:
prompt/>debug boot.bin
-w 100 0 0 1
-q
then the properties show 0 byte used and 0 byte free space. I tried another method to copy, using partcopy:
prompt/>partcopy Boot1.bin 0 200 -f0
it gives the same results, 0 bytes used space and 0 bytes free.
any help I'll be appreciated.
mov ah, 0Eh,mov al, 'X',int 10hfor example. I have experience only with "real floppies", not "virtual", but I suspect that your bootsector "may" actually be written to your virtual drive(?)... – Frank Kotler Jan 19 at 3:17