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