mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-05 02:47:05 +00:00
20 lines
214 B
Scala
Executable File
20 lines
214 B
Scala
Executable File
OUTPUT_FORMAT("ieee")
|
|
OUTPUT_ARCH(h8300)
|
|
|
|
SECTIONS
|
|
{
|
|
.code 40:
|
|
{
|
|
|
|
*(.code)
|
|
*(.strings)
|
|
}
|
|
.bss . :
|
|
{
|
|
*(.bss)
|
|
[COMMON]
|
|
_end = .;
|
|
}
|
|
}
|
|
|