14 lines
169 B
Plaintext
14 lines
169 B
Plaintext
MEMORY
|
|
{
|
|
BRAM (RWX) : ORIGIN = 0x0000, LENGTH = 0x1800 /* 6kB RAM */
|
|
}
|
|
SECTIONS
|
|
{
|
|
everything :
|
|
{
|
|
. = ALIGN(4);
|
|
start.o (.text)
|
|
*(.*)
|
|
} >BRAM
|
|
}
|