possible bug in virtex bsp
Tim Cussins
timcussins at eml.cc
Fri Nov 23 14:19:16 UTC 2007
> heap_start = (((uint32_t)BSP_Configuration.work_space_start +
> BSP_Configuration.work_space_size) + 0x18000) & 0xffff0000;
>
> heap_end = _heap_start + (uint32_t)&_HeapSize;
>
Sorry - hit 'send' too early :j Schoolboy error.
I think
heap_end = _heap_start + (uint32_t)&_HeapSize;
should be
heap_end = heap_start + (uint32_t)&_HeapSize;
Thoughts/suggestions?
Cheers,
Tim
More information about the users
mailing list