initial commit

This commit is contained in:
Zoe
2023-06-25 17:09:32 -05:00
commit 3e19945c40
14 changed files with 422 additions and 0 deletions

28
linker.ld Normal file
View File

@@ -0,0 +1,28 @@
/* We want the symbol _start to be our entry point */
ENTRY(_start)
SECTIONS
{
. = 0xFFFFF;
.text : {
*(.text)
}
/* Read-only data. */
.rodata : {
*(.rodata)
}
/* Read-write data (initialized) */
.data : {
*(.data)
}
/* Read-write data (uninitialized) and stack */
.bss : {
*(COMMON)
*(.bss)
}
}