1FUNC void Setup (void) {
2 SP = _RDWORD(0x0); // Setup Stack Pointer
3 PC = _RDWORD(0x4); // Setup Program Counter
4 _WDWORD(0xE000ED08, 0); // Setup Vector Table Offset Register
5}
6
7//LOAD %L INCREMENTAL // Download
8
9Setup(); // Setup for Running
10
11g, main