mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-14 19:09:24 +08:00
11 lines
330 B
INI
11 lines
330 B
INI
FUNC void Setup (void) {
|
|
SP = _RDWORD(0x0); // Setup Stack Pointer
|
|
PC = _RDWORD(0x4); // Setup Program Counter
|
|
_WDWORD(0xE000ED08, 0); // Setup Vector Table Offset Register
|
|
}
|
|
|
|
//LOAD %L INCREMENTAL // Download
|
|
|
|
Setup(); // Setup for Running
|
|
|
|
g, main |