mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-28 21:03:54 -06:00

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>
21 lines
251 B
Text
21 lines
251 B
Text
ENTRY(exc_reset_thumb)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0x0;
|
|
.text : {
|
|
*(.text)
|
|
}
|
|
.data : {
|
|
*(.data)
|
|
}
|
|
.rodata : {
|
|
*(.rodata)
|
|
}
|
|
.bss : {
|
|
*(.bss)
|
|
}
|
|
/DISCARD/ : {
|
|
*(.ARM.attributes)
|
|
}
|
|
}
|