fusee_cpp: Implement fatal display, reading of fusee-secondary
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
MEMORY
|
||||
{
|
||||
NULL : ORIGIN = 0, LENGTH = 4K
|
||||
glob : ORIGIN = 0x40001000, LENGTH = 0x3F000
|
||||
main : ORIGIN = 0x40001000, LENGTH = 0x2B000
|
||||
ovl : ORIGIN = 0x4002C000, LENGTH = 0x14000
|
||||
|
||||
glob : ORIGIN = ORIGIN(main), LENGTH = LENGTH(main) + LENGTH(ovl) * 3
|
||||
}
|
||||
|
||||
SECTIONS {
|
||||
@@ -21,6 +22,24 @@ SECTIONS {
|
||||
. = ORIGIN(ovl) + LENGTH(ovl) - 1;
|
||||
BYTE(0x00);
|
||||
}
|
||||
.ovl_mtc_erista {
|
||||
fusee_mtc_erista.o(.text*);
|
||||
fusee_mtc_erista.o(.rodata*);
|
||||
fusee_mtc_erista.o(.data*);
|
||||
fusee_mtc_erista.o(.bss*);
|
||||
FILL(0x00000000)
|
||||
. = ORIGIN(ovl) + LENGTH(ovl) - 1;
|
||||
BYTE(0x00);
|
||||
}
|
||||
.ovl_mtc_mariko {
|
||||
fusee_mtc_mariko.o(.text*);
|
||||
fusee_mtc_mariko.o(.rodata*);
|
||||
fusee_mtc_mariko.o(.data*);
|
||||
fusee_mtc_mariko.o(.bss*);
|
||||
FILL(0x00000000)
|
||||
. = ORIGIN(ovl) + LENGTH(ovl) - 1;
|
||||
BYTE(0x00);
|
||||
}
|
||||
} >ovl AT>glob
|
||||
}
|
||||
INSERT AFTER .main.fill
|
||||
Reference in New Issue
Block a user