mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-26 15:37:22 +08:00
11 lines
448 B
INI
11 lines
448 B
INI
|
|
||
|
FUNC void Setup (unsigned int region) {
|
||
|
region &= 0xFFFF0000;
|
||
|
SP = _RDWORD(region); // Setup Stack Pointer
|
||
|
PC = _RDWORD(region + 4); // Setup Program Counter
|
||
|
_WDWORD(0xE000ED08, region); // Setup Vector Table Offset Register
|
||
|
}
|
||
|
|
||
|
LOAD "build\\project.axf" INCREMENTAL
|
||
|
Setup(__scatterload); // Get ready to execute image in SRAM or whatever region it is in g,main
|