Giles Russell writes:
>
> Hello ppl,
>
> I am getting this error :-
>
> tools/mkurlader -r 0003 -c e000 64 Image f000 -a boot/setup e000 -s
> boot/system e060
> boot/setup: 41ch Bytes (- a.out) @e000
> boot/system: f57ch Bytes (strip) @e060
> Bereichsfehler in Nr. 0 (offs < basis)!
> make[1]: *** [Image] Error 255
>
>
> Any ideas as to the meaning ??? I am trying to build a 64K ROM Image.
> I cannot remember my German that well :/
>
This is because you have set the base address of the ROM to be f000, and
the told it to put the kernel at e000, which is before the start of the
ROM. You need to set the "Startaddress of ROM (for offset in image-file)"
parameter in the config (ROM_BASIS) to e000.
Al