mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-22 23:48:12 +00:00
fastflash: Compatible with GCC 4.9.3
This commit is contained in:
parent
d80979cd0a
commit
899852423d
@ -3,8 +3,8 @@
|
||||
MEMORY
|
||||
{
|
||||
rom (rx) : ORIGIN = 0x08010000, LENGTH = 512K - 64K
|
||||
bootloader (rx) : ORIGIN = 0x20000000, LENGTH = __bootloader_size__
|
||||
ram (rwx) : ORIGIN = ORIGIN(bootloader) + LENGTH(bootloader),
|
||||
bootloader (rx) : ORIGIN = 0x20000000, LENGTH = 20K
|
||||
ram (rwx) : ORIGIN = 0x20000000 + LENGTH(bootloader),
|
||||
LENGTH = 128K - LENGTH(bootloader)
|
||||
}
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
MEMORY
|
||||
{
|
||||
rom (rx) : ORIGIN = 0x20000000, LENGTH = 20K
|
||||
ram (rwx) : ORIGIN = ORIGIN(rom) + LENGTH(rom),
|
||||
ram (rwx) : ORIGIN = 0x20000000 + LENGTH(rom),
|
||||
LENGTH = 128K - LENGTH(rom)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user