; Link file to test PSRAM low area (0xA8000000 - 0xA8100000) ; The region HEAP is used to locate the bottom of the heap immediately above ; the ZI data ("+0"). The heap will grow up from this address. ; ; The region STACKS is used to locate the top of the memory used to store ; the stacks for each mode. The stacks will grow down from this address. ; ; The region UART0 is used to map the position of the Integrator UART0 registers. ; ; Regions marked UNINIT will be left uninitialized, i.e. they will not be ; zero-initialized by the C library when it starts-up. ROM_LOAD 0x1FFFFFC0 { code +0 { vector.o (Vect, +First) } } RAM_LOAD 0xB6100000 { ROM_code +0 { ;vector.o (Vect, +First) * (+RO) } RAM +0 { * (+RW,+ZI) } HEAP +0 UNINIT { heap.o (+ZI) } STACKS 0x0 UNINIT { stack.o (+ZI) } }