diff options
Diffstat (limited to 'src/cpu/x86/32bit/reset32.lds')
-rw-r--r-- | src/cpu/x86/32bit/reset32.lds | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/cpu/x86/32bit/reset32.lds b/src/cpu/x86/32bit/reset32.lds deleted file mode 100644 index 1afb215c41..0000000000 --- a/src/cpu/x86/32bit/reset32.lds +++ /dev/null @@ -1,14 +0,0 @@ -/* - * _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); - } -} |