Search code examples
assemblyoperating-systembootloaderbochs

Bochs "vgaromimage" Error?


enter image description hereWhile Testing my Boot-loader in Bochs I have used following configuration file

# ROM and VGA BIOS images ---------------------------------------------

romimage:    file=BIOS-bochs-latest, address=0xf0000 
vgaromimage: VGABIOS-lgpl-latest 

# boot from floppy using our disk image -------------------------------

floppya: 1_44=a:, status=inserted  # Boot from drive A

# logging and reporting -----------------------------------------------

log:         OSDev.log             # All errors and info logs will output to OSDev.log
error:       action=report 
info:        action=report

But while executing it i am getting the error "vgaromimage directive malformed". Any help?? I have saved my configuration file Conf.bxrc?

enter link description here


Solution

  • I find solution to my problem error is generated not due to path but due to address mentioned in configuration file i have replaced the address 0xf0000 by 0xe0000 and it works,because The size of the Bochs BIOS is 128kb, not 64kb –