* Christian Sühs chris@suehsi.de [060424 00:05]:
What about the rom_adress
stefan means 0xfffc0000 ron means 0xffffc000
:D
what should I try? The vga segment is located first in the image.
Flash chips are located directly below 4G (0xffffffff)
So you need to calculate the address by subtracting the flash chip size (and adding the offset within the image)
in your case the offset within the image is 0, because its the first thing.
then you type (in bash for example)
biossize=256 printf "0x%x\n" $(( 0x100000000 - ($biossize*1024) ))
Stefan