mirror of
https://github.com/thomasxm/BOAZ_beta
synced 2026-06-06 16:54:29 +00:00
23 lines
253 B
Plaintext
23 lines
253 B
Plaintext
MEMORY
|
|
{
|
|
CODE : ORIGIN = 0x00400000, LENGTH = 64M
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
*( .text$A )
|
|
*( .text$B )
|
|
*( .text$C )
|
|
*( .text$D )
|
|
*( .text$E )
|
|
*( .rdata* )
|
|
*( .text$F )
|
|
} > CODE
|
|
|
|
.idata :
|
|
{
|
|
*(.idata)
|
|
} > CODE
|
|
} |