sec-11.ld 246 B

12345678910
  1. OUTPUT_ARCH(mmix)
  2. ENTRY(Main)
  3. SECTIONS
  4. {
  5. .text 0x101 : /* Note the misaligned address; must trig a linker error. */
  6. { *(.text*); Main = _start; }
  7. .MMIX.reg_contents :
  8. { *(.MMIX.reg_contents.linker_allocated); *(.MMIX.reg_contents); }
  9. }