linker file
This commit is contained in:
parent
c8ab919c11
commit
1ae3c5b8a5
|
@ -0,0 +1,9 @@
|
|||
OUTPUT_FORMAT(elf32-i386)
|
||||
ENTRY(_start)
|
||||
SECTIONS
|
||||
{
|
||||
. = 0x100000;
|
||||
.text : {*(.text)}
|
||||
.data : {*(.data)}
|
||||
.bss : {*(.bss)}
|
||||
}
|
Loading…
Reference in New Issue