first commit

This commit is contained in:
Yehowshua Immanuel 2025-02-12 23:54:15 -05:00
commit ef58d5b07e
34 changed files with 2210 additions and 0 deletions

View file

@ -0,0 +1,25 @@
OUTPUT_ARCH(riscv)
ENTRY(_start)
SECTIONS
{
/* Start execution at 0x80000000 */
. = 0x80000000;
.text : {
*(.text.init)
*(.text)
}
.rodata : {
*(.rodata)
}
.data : {
*(.data)
}
.bss : {
*(.bss)
}
}