You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
176 B

  1. OUTPUT_ARCH(i8086)
  2. MEMORY { MBR (rx) : org = 0x7c00 , len = 0x200 }
  3. SECTIONS {
  4. ENTRY(mbr)
  5. .main 0x7c00 : { *(main) }
  6. .igot 0x0000 : { *(.igot.plt) }
  7. }