blob: c818b1a0a6cfe80d112fe9f739acedf24bde380b [file] [log] [blame]
OUTPUT_FORMAT("elf64-littleaarch64")
OUTPUT_ARCH(aarch64)
ENTRY(acs_entry)
SECTIONS
{
. = 0xFFFAF000;
. : {
__RO_START__ = .;
*acs_entry.o(.text*)
*(.text*)
*(.data*)
}
ASSERT(. <= 0xFFFB0000, "timing image has exceeded its limit.")
}