e8368b1c95
Prepare for expanding the arm system tests by cleaning up the test directory. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20231120150833.2552739-11-alex.bennee@linaro.org>
22 lines
251 B
Plaintext
22 lines
251 B
Plaintext
ENTRY(exc_reset_thumb)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0x0;
|
|
.text : {
|
|
*(.text)
|
|
}
|
|
.data : {
|
|
*(.data)
|
|
}
|
|
.rodata : {
|
|
*(.rodata)
|
|
}
|
|
.bss : {
|
|
*(.bss)
|
|
}
|
|
/DISCARD/ : {
|
|
*(.ARM.attributes)
|
|
}
|
|
}
|