/*========================================================================= * * The PyRISC Project * * Linker script * * Jin-Soo Kim * Systems Software and Architecture Laboratory * Seoul National University * http://csl.snu.ac.kr * =========================================================================*/ OUTPUT_ARCH( "riscv" ) ENTRY(_start) SECTIONS { . = 0x00000000; .text : { *(.text) } . = 0x00001000; .data : { *(.data) } .bss : { *(.bss) } _end = .; }