mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-03-04 23:48:44 +00:00
23 lines
224 B
Scala
Executable File
23 lines
224 B
Scala
Executable File
OUTPUT_FORMAT("coff-h8300")
|
|
OUTPUT_ARCH(h8300)
|
|
|
|
SECTIONS
|
|
{
|
|
.text 0:
|
|
{
|
|
*(.text)
|
|
*(.strings)
|
|
}
|
|
.data . :
|
|
{
|
|
*(.data)
|
|
}
|
|
.bss . :
|
|
{
|
|
*(.bss)
|
|
[COMMON]
|
|
_end = .;
|
|
}
|
|
}
|
|
|