OUTPUT_FORMAT("ecoff-littlemips")
SEARCH_DIR(.)
ENTRY(__start)

SECTIONS {
  .text		0		: { *(.text) }
  .rdata	BLOCK(0x400)	: { *(.rdata) }
  .data		BLOCK(0x400)	: { *(.data) }
  .sbss		BLOCK(0x400)	: { *(.sbss) }
  .bss		BLOCK(0x400)	: { *(.bss) }
  .scommon	BLOCK(0x400)	: { *(.scommon) }
}
