Everything
11.14 Using sections that include address 0xffffffff (in the assembler)

If two or more .section directives in the assembly source code contain .org directives, the sections have the same name, and the sections overlap at 0xffffffff, the assembler outputs an internal error message (C0554098).

 

Example)

      .section SS,ROMDATA
      .org 0fffffffeh
      .byte 1
      .byte 2 ; 0xffffffff
      .section SS,ROMDATA
      .org 0ffffffffh
      .byte 3; ; 0xffffffff
      .end