blob: 80f2fc0c6f8cd1ce43f8f2e14e52eccb36206f3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* _ROMTOP : The top of the rom used where we
* need to put the reset vector.
*/
SECTIONS {
_ROMTOP = (_ROMBASE >= 0xffff0000)? 0xfffffff0 : 0xffff0;
. = _ROMTOP;
.reset . : {
*(.reset)
. = 15 ;
BYTE(0x00);
}
}
|