Update files

This commit is contained in:
Alex
2022-10-08 04:34:05 +03:00
parent e022af99e5
commit e9808d726a
3 changed files with 180 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
/* EXPERIMENTAL */
OUTPUT_FORMAT(binary)
OUTPUT_ARCH(i386:x86-64)
ENTRY(_start)
SECTIONS
{
.header :
{
*(.header .header.*)
}
.text :
{
*(.text .text.*)
}
.data :
{
*(.data .data.*)
}
.rodata :
{
*(.rodata .rodata.*)
}
.bss :
{
*(COMMON)
*(.bss .bss.*)
}
/DISCARD/ :
{
*(.eh_frame)
*(.note .note.*)
}
}