mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
8 lines
176 B
Text
8 lines
176 B
Text
|
OUTPUT_ARCH(i8086)
|
||
|
MEMORY { MBR (rx) : org = 0x7c00 , len = 0x200 }
|
||
|
SECTIONS {
|
||
|
ENTRY(mbr)
|
||
|
.main 0x7c00 : { *(main) }
|
||
|
.igot 0x0000 : { *(.igot.plt) }
|
||
|
}
|