Archived
1
0

Init commit

This commit is contained in:
sweetbread
2023-06-11 03:21:00 +03:00
commit dc685b3d93
8 changed files with 700 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
SECTIONS
{
. = 0x00000;
.text :
{
LONG(0x554E454D);
LONG(0x31305445);
LONG(1);
LONG(start_program);
LONG(__end);
LONG(0x10000);
LONG(0x10000);
LONG(0);
LONG(0);
*(.text)
}
.eh_frame :
{
*(.eh_frame)
}
.group :
{
*(.group)
}
.data :
{
*(.data)
}
.rodata :
{
*(.rodata)
*(.rodata.*)
}
__end = .;
}