mirror of
https://github.com/pmret/papermario.git
synced 2024-11-09 12:32:38 +01:00
woohoo
This commit is contained in:
parent
4af74fdcbd
commit
e118ce48ca
@ -8,27 +8,6 @@ SECTIONS
|
||||
* (.boot);
|
||||
}
|
||||
|
||||
/* load MIO0 and level data at 0x800000 */
|
||||
.rodata 0x800000 : {
|
||||
FILL (0x01) /* fill unused with 0x01 */
|
||||
* (.mio0);
|
||||
* (.rodata);
|
||||
* (.data);
|
||||
* (.MIPS.abiflags);
|
||||
. = ALIGN(0x10);
|
||||
}
|
||||
|
||||
/* use segmented addressing for behaviors */
|
||||
.behavior 0x13000000 : AT( LOADADDR(.rodata) + SIZEOF(.rodata) ) {
|
||||
FILL (0x01) /* fill unused with 0x01 */
|
||||
* (.behavior);
|
||||
behavior_length = . - 0x13000000;
|
||||
/* default 4MB data (12MB ROM) */
|
||||
. = 0x400000 - SIZEOF(.rodata);
|
||||
}
|
||||
__load_behavior_data = LOADADDR(.behavior);
|
||||
__load_behavior_data_end = LOADADDR(.behavior) + behavior_length;
|
||||
|
||||
/* 0x00000000 000040-000B70 [B30] */
|
||||
.text00000000 0x00000000 : AT(0x000040) {
|
||||
* (.text00000000);
|
||||
@ -204,4 +183,9 @@ SECTIONS
|
||||
* (.text002B7000);
|
||||
}
|
||||
|
||||
/* Discard everything not specifically mentioned above. */
|
||||
/DISCARD/ :
|
||||
{
|
||||
*(*);
|
||||
}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user