mirror of
https://github.com/rtlduino/RTL8710AF_GCC.git
synced 2024-12-02 03:00:37 +00:00
03e74a8e50
motify compile link error
12 lines
386 B
Text
12 lines
386 B
Text
/* Linker script to configure memory regions.
|
|
* Need modifying for a specific board.
|
|
* FLASH.ORIGIN: starting address of flash
|
|
* FLASH.LENGTH: length of flash
|
|
* RAM.ORIGIN: starting address of RAM bank 0
|
|
* RAM.LENGTH: length of RAM bank 0
|
|
*/
|
|
MEMORY
|
|
{
|
|
FLASH (rx) : ORIGIN = 0x0, LENGTH = 0x20000 /* 128K */
|
|
RAM (rwx) : ORIGIN = 0x10000000, LENGTH = 0x2000 /* 8K */
|
|
}
|