Fix to use correct boot ROM entry in stage1 linker script.

pull/302/head
David Garske 2023-05-10 17:01:31 -07:00
parent 4e93027cb9
commit 08e6a37ad7
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@ OUTPUT_ARCH( "powerpc" )
ENTRY( _reset )
/* Adjust base address to 0xF8F80000 is debugging (run from L2 cache) */
/* Boot ROM out of reset mapped to 0xFFFF0000 */
BASE_ADDR = 0xFFFF0000; /* 0xF8F80000 */
/* Boot ROM out of reset mapped to 0xFFFFF000 */
BASE_ADDR = 0xFFFFF000; /* 0xF8F80000 */
/* Boot ROM requires it must be < 4KB */
/* If debugging this can be increased */