ROM.ini 253 B

12345678
  1. FUNC void Setup (void) {
  2. SP = _RDWORD(0x8010100); // Setup Stack Pointer
  3. PC = _RDWORD(0x8010104); // Setup Program Counter
  4. _WDWORD(0xE000ED08, 0x8010100); // Setup VTOR
  5. }
  6. LOAD %L INCREMENTAL // load the application
  7. Setup(); // Setup for Running
  8. g, _main