33 lines
870 B
YAML
33 lines
870 B
YAML
|
#******************************************************************************
|
||
|
#
|
||
|
# Memory configuration
|
||
|
#
|
||
|
# This is a configuration file to help you set up consistent linker settings
|
||
|
# across multiple toolchains.
|
||
|
#
|
||
|
#******************************************************************************
|
||
|
MemorySections:
|
||
|
|
||
|
# Default memory region for vector table, code, and read-only data.
|
||
|
ROMEM:
|
||
|
start: 0x0000C000
|
||
|
size: 2000K
|
||
|
|
||
|
# Default memory region for fast-access data
|
||
|
TCM:
|
||
|
start: 0x10000000
|
||
|
size: 0K
|
||
|
|
||
|
# Default memory location for read-write, zero-init, and no-init data.
|
||
|
RWMEM:
|
||
|
start: 0x10000000
|
||
|
end: 0x100C0000
|
||
|
|
||
|
StackOptions:
|
||
|
|
||
|
# Number of bytes to use for the stack.
|
||
|
size: 4K
|
||
|
|
||
|
# Should the stack be placed in TCM? If false, the stack will be placed in RWMEM.
|
||
|
place_in_tcm: false
|