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 |