Here is my simple bootsector code.
I compile this code with this line..[BITS 16]
[ORG 0x7C00]
mov ah, 0Eh
mov al, 'A'
mov bh, 0Eh
mov bl, 0
int 10h
hang:
jmp hang
times 510-($-$$) db 0
dw 55AAh
nasm -f bin booting.asm -o booting.bin
and here is my bochs config file.
and this is what bochs says:(romimage: file=BIOS-bochs-latest, address=0xf0000
vgaromimage: VGABIOS-elpin-2.40
megs: 32
floppya: 1_44=booting.bin, status=inserted
boot: a
log: bochsout.txt
panic: action=ask
error: action=report
info: action=report
debug: action=ignore
vga_update_interval: 300000
keyboard_serial_delay: 250
keyboard_paste_delay: 100000
floppy_command_delay: 500
ips: 1000000
mouse: enabled=0
private_colormap: enabled=0
fullscreen: enabled=0
screenmode: name="sample"
keyboard_mapping: enabled=0, map=
Fatal:Not a bootable disk
Im using Bochs-2.0.2. Where am I wrong?