mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-13 15:05:46 +00:00
25 lines
345 B
Python
25 lines
345 B
Python
|
/* $Id$
|
||
|
*/
|
||
|
|
||
|
OUTPUT_FORMAT("m68kvcoff")
|
||
|
|
||
|
ENTRY(__startup)
|
||
|
SECTIONS
|
||
|
{
|
||
|
.text 0x001000a8 : {
|
||
|
*(.init)
|
||
|
*(.text)
|
||
|
*(.fini)
|
||
|
_etext = .;
|
||
|
}
|
||
|
.data ((ADDR(.text) + SIZEOF(.text)) % 0x2000) + ALIGN(0x00200000) : {
|
||
|
*(.data)
|
||
|
_edata = .;
|
||
|
}
|
||
|
.bss (SIZEOF(.data) + ADDR(.data)) : {
|
||
|
*(.bss)
|
||
|
[COMMON]
|
||
|
_end = ALIGN(0x8);
|
||
|
}
|
||
|
}
|