blob: fa6db86b1a68aff92476fdbac600f6147dbe57ee (
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 + ROM_IMAGE_SIZE - 0x10;
. = _ROMTOP;
.reset (.): {
*(.reset)
. = 15 ;
BYTE(0x00);
}
}
|