12345678910111213141516171819202122232425262728 |
- /***********************************************************************/
- /* This file is part of the ARM Compiler package */
- /* Copyright KEIL ELEKTRONIK GmbH 1992-2004 */
- /***********************************************************************/
- /* */
- /* RAM.INI: RAM Initialization File */
- /* */
- /***********************************************************************/
- //*** <<< Use Configuration Wizard in Context Menu >>> ***
- FUNC void Pre_Setup (void) {
- _WDWORD(0x40048000, 0x00000002); // MEMMAP = 2
- }
- FUNC void Setup (void) {
- SP = _RDWORD(0x00000000);
- PC = _RDWORD(0x00000004);
- }
- Pre_Setup();
- LOAD .\Obj\gpiotest.axf INCREMENTAL // Download
- Setup(); // Setup for Running
- // g, main
|