From cd3cfa63e6248c66e34ea1fe0af1fcb72a74c58f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Tue, 20 Apr 2021 13:26:07 +0200 Subject: [PATCH] memory.x: remove comment about old cortex-m-rt --- memory.x | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/memory.x b/memory.x index a132517..d87640a 100644 --- a/memory.x +++ b/memory.x @@ -37,10 +37,7 @@ SECTIONS { __eitcm = .; } > ITCM AT>FLASH __siitcm = LOADADDR(.itcm); - -/* This may be the only insert location that doesn't affect those __[es]... - * that are (unfortunately) placed outside their sections */ -} INSERT BEFORE .uninit; +} INSERT AFTER .uninit; ASSERT(__sitcm % 8 == 0 && __eitcm % 8 == 0, " BUG(cortex-m-rt): .itcm is not 8-byte aligned");