From ff081aee72436131cf11e3a35f96a6405c3a4d78 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 6 Nov 2018 16:58:02 +0100 Subject: score: Rename interrupt stack symbols Rename * _Configuration_Interrupt_stack_area_begin in _ISR_Stack_area_begin, * _Configuration_Interrupt_stack_area_end in _ISR_Stack_area_end, and * _Configuration_Interrupt_stack_size in _ISR_Stack_size. Move definitions to . The new names are considerable shorter and in the right namespace. Update #3459. --- bsps/m68k/genmcf548x/start/start.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bsps/m68k/genmcf548x/start/start.S') diff --git a/bsps/m68k/genmcf548x/start/start.S b/bsps/m68k/genmcf548x/start/start.S index 1bc09a0118..8495897005 100644 --- a/bsps/m68k/genmcf548x/start/start.S +++ b/bsps/m68k/genmcf548x/start/start.S @@ -75,7 +75,7 @@ .section ".vectors","ax" /* begin of vectors section */ PUBLIC (InterruptVectorTable) SYM(InterruptVectorTable): -INITSP: .long _Configuration_Interrupt_stack_area_end /* Initial SP */ +INITSP: .long _ISR_Stack_area_end /* Initial SP */ INITPC: .long start /* Initial PC */ vector002: .long asm_default_interrupt /* Access Error */ vector003: .long asm_default_interrupt /* Address Error */ @@ -411,7 +411,7 @@ SYM(start_init): jsr mcf548x_init /* Initialize mcf548x peripherals */ - move.l #_Configuration_Interrupt_stack_area_end,sp /* relocate sp */ + move.l #_ISR_Stack_area_end,sp /* relocate sp */ clrl d0 /* clear d0 */ movel d0,a7@- /* command line == 0 */ -- cgit v1.2.3