mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-18 11:08:26 +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/ : { *(*) }
|
|
}
|