mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
26 lines
408 B
Plaintext
26 lines
408 B
Plaintext
|
|
OUTPUT_ARCH( "riscv" )
|
|
|
|
ENTRY(main)
|
|
|
|
/*----------------------------------------------------------------------*/
|
|
/* Sections */
|
|
/*----------------------------------------------------------------------*/
|
|
|
|
MEMORY {
|
|
|
|
ram(wxa!ri): ORIGIN = 0x80000000, LENGTH = 0x4000
|
|
|
|
}
|
|
|
|
SECTIONS {
|
|
|
|
.text :
|
|
{
|
|
*(.text*)
|
|
}
|
|
> ram
|
|
. = ALIGN(4);
|
|
|
|
}
|