Home | History | Annotate | Download | only in ld-scripts
      1 SECTIONS
      2 {
      3   . = 0xc000;
      4   .text :
      5   {
      6     _text = .;
      7     *(.text)
      8   }
      9   _end = .;
     10 }
     11 ASSERT (_end - _text <= 0x100, "fail");
     12