summaryrefslogtreecommitdiff
path: root/src/cpu/x86/16bit/reset16.lds
blob: 0ba54c9487f340bfacc15bfebded12da80b48f28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 *      _ROMTOP                 : The top of the rom used where we
 *				  need to put the reset vector.
 */

SECTIONS {
	/* Trigger an error if I have an unuseable start address */
	_bogus = ASSERT(_start >= 0xffff0000, "_start to low please decrease ROM_IMAGE_SIZE");
	_ROMTOP = 0xfffffff0;
	. = _ROMTOP;
	.reset . : {
		*(.reset)
		. = 15 ;
		BYTE(0x00);
	} 
}