From c8bff40ffbfc412722a921e33a58b386dbaff8fd Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 29 Mar 2017 15:53:41 +0200 Subject: [PATCH] trezorhal: use more readable syntax in memory script --- micropython/trezorhal/memory.ld | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/micropython/trezorhal/memory.ld b/micropython/trezorhal/memory.ld index f31d8e27..af2d54a8 100644 --- a/micropython/trezorhal/memory.ld +++ b/micropython/trezorhal/memory.ld @@ -6,9 +6,9 @@ /* Specify the memory areas */ MEMORY { - FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 0x100000 /* entire flash, 1 MiB */ - CCMRAM (xrw) : ORIGIN = 0x10000000, LENGTH = 0x010000 /* 64 KiB */ - RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 0x020000 /* 128 KiB */ + FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 1024K + CCMRAM (xrw) : ORIGIN = 0x10000000, LENGTH = 64K + RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 128K } /* produce a link error if there is not this amount of RAM for these sections */