mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-02-24 23:54:42 +08:00
Jump to the correct physical address in Flash. (The comment was wrong, it never used RAM)
This commit is contained in:
parent
47c872f48f
commit
7af790aa03
1 changed files with 2 additions and 2 deletions
|
@ -182,8 +182,8 @@ void BootROM(void)
|
|||
USB_D_PLUS_PULLUP_OFF();
|
||||
LED_B_ON();
|
||||
|
||||
// jump to RAM address 0x10000 (LSBit set for thumb mode)
|
||||
asm("ldr r3, = 0x10001\n");
|
||||
// jump to Flash address 0x10000 (LSBit set for thumb mode, 0x100000 added for Flash base address)
|
||||
asm("ldr r3, = 0x00110001\n");
|
||||
asm("bx r3\n");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue