|
From: Julian S. <js...@ac...> - 2003-12-22 01:05:41
|
I'd guess your image asks to be mapped at some place V doesn't
expect, and V can't do it.
> MEMORY
> {
> rom : ORIGIN = 0x1000000, LENGTH = 0x800000
> ram : ORIGIN = 0x2000000, LENGTH = 0x800000
> }
Does this work?
MEMORY
{
rom : ORIGIN = 0x4000000, LENGTH = 0x800000
ram : ORIGIN = 0x5000000, LENGTH = 0x800000
}
J
|