mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-12 11:29:30 +00:00
14 lines
154 B
Plaintext
14 lines
154 B
Plaintext
ENTRY(_start)
|
|
SECTIONS
|
|
{
|
|
.got 0x1000 : {
|
|
*(.got)
|
|
}
|
|
.data 0x2000: {
|
|
*(.data)
|
|
}
|
|
.text 0x900000000 : {
|
|
*(.text)
|
|
}
|
|
}
|