mbed library sources

Dependents:   frdm_kl05z_gpio_test

Fork of mbed-src by mbed official

Committer:
mbed_official
Date:
Tue Jul 15 07:45:08 2014 +0100
Revision:
256:76fd9a263045
Synchronized with git revision 2031512f69c228e1d13ea89c39409db813af949f

Full URL: https://github.com/mbedmicro/mbed/commit/2031512f69c228e1d13ea89c39409db813af949f/

[LPC4330] Updated LPC4330_M4 port

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 256:76fd9a263045 1
mbed_official 256:76fd9a263045 2 FUNC void Setup (unsigned int region) {
mbed_official 256:76fd9a263045 3 region &= 0xFF000000;
mbed_official 256:76fd9a263045 4 _WDWORD(0x40043100, region); // Set the shadow pointer
mbed_official 256:76fd9a263045 5 _WDWORD(0xE000ED08, 0); // Set the vector table offset to 0
mbed_official 256:76fd9a263045 6 SP = _RDWORD(0); // Setup Stack Pointer
mbed_official 256:76fd9a263045 7 PC = _RDWORD(4); // Setup Program Counter
mbed_official 256:76fd9a263045 8 }
mbed_official 256:76fd9a263045 9
mbed_official 256:76fd9a263045 10 LOAD %L INCREMENTAL
mbed_official 256:76fd9a263045 11 Setup(0x14000000); // Get ready to execute image in QSPI
mbed_official 256:76fd9a263045 12