SAIFIINDUSTRIES's picture
Add batch 9 (Evensgn_RISC-V-CPU, nandland_nandland, stffrdhrn_sdram-controller, viduraakalanka_HDL-Bits-Solutions, suisuisi_FPGAandCNN)
df0a64a verified
Raw
History Blame Contribute Delete
290 Bytes
SECTIONS
{
. = 0x00000000;
.rom :
{
*(.rom)
}
. = 0x00001000;
.text :
{
*(.text)
}
.rodata ALIGN(4) :
{
*(.rodata)
}
.data ALIGN(4) :
{
*(.data)
}
__bss_start = .;
.bss ALIGN(4) :
{
*(.bss)
}
__bss_end = .;
__heap_start = (__bss_end + 0xfff) & 0xff000;
}