[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
possible bug in virtex bsp
- Date: Fri, 23 Nov 2007 14:19:16 +0000
- From: timcussins at eml.cc (Tim Cussins)
- Subject: possible bug in virtex bsp
> 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