You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
822 B
Plaintext
41 lines
822 B
Plaintext
#! armclang -E --target=arm-arm-none-eabi -mcpu=cortex-m7 -xc
|
|
; command above MUST be in first line (no comment above!)
|
|
|
|
/*
|
|
;-------- <<< Use Configuration Wizard in Context Menu >>> -------------------
|
|
*/
|
|
|
|
#include "mem_ARMCR52.h"
|
|
|
|
|
|
;*******************************************************
|
|
;
|
|
; Copyright (c) 2018 Arm Limited. All rights reserved.
|
|
;
|
|
;*******************************************************
|
|
|
|
; Scatter-file for Cortex-Rv8 bare-metal minimal example
|
|
|
|
LOAD_REGION 0x0
|
|
{
|
|
CODE +0 0x80000
|
|
{
|
|
*.o (VECTORS, +First)
|
|
* (InRoot$$$Sections)
|
|
* (+RO-CODE)
|
|
}
|
|
|
|
DATA 0x80000 NOCOMPRESS 0x100000
|
|
{
|
|
* (+RO-DATA)
|
|
* (+RW,+ZI)
|
|
}
|
|
|
|
ARM_LIB_STACKHEAP 0x180000 ALIGN 64 EMPTY 0x00060000
|
|
{}
|
|
}
|
|
|
|
|
|
|
|
|