On Sun, Dec 25, 2005 at 11:54:07AM +0100, Christian Sühs wrote:
I will try both (0x00 and 0xFF), and see what happens. Thanks for the hint.
But one question, how can I fill up the image with 0xFF. My 0x00 way is to create a file with
dd if=/dev/zero of=bios2nd.rom bs=1 count=fill_lenght
head -c<count> /dev/zero | tr '\000' '\377' > bios2nd.rom
and then
cat vga_original.rom bios2nd.rom > finalvga.rom
-Kevin