Initial IAR LPC1768 demo. Work in progress at this point.

This commit is contained in:
Richard Barry 2009-08-09 12:19:17 +00:00
parent 87bb2c58b2
commit fb01731f41
57 changed files with 13450 additions and 0 deletions

View file

@ -0,0 +1,13 @@
execUserReset()
{
__writeMemory32(0x00000000, 0xE000ED08, "Memory"); //Vector table remap at 0x00000000
}
execUserPreload()
{
// If the MAM values was wrong, a dummy read is necessary to get the flash memory in sync.
__writeMemory32(0x00000001, 0x400FC040, "Memory"); // MEMMAP = 1
__readMemory32(0x00000000, "Memory");
__writeMemory32(0x00000000, 0xE000ED08, "Memory"); //Vector table remap at 0x00000000
}