mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
10 lines
184 B
Plaintext
10 lines
184 B
Plaintext
|
EXTERN (__c6xabi_DSBT_BASE);
|
||
|
SECTIONS
|
||
|
{
|
||
|
. = 0x80;
|
||
|
.data : { PROVIDE_HIDDEN (__c6xabi_DSBT_BASE = .); *(.data*) }
|
||
|
. = 0x10000000;
|
||
|
.text : { *(.text*) }
|
||
|
/DISCARD/ : { *(*) }
|
||
|
}
|