diff options
Diffstat (limited to 'cpu/mpc5xx/start.S')
| -rw-r--r-- | cpu/mpc5xx/start.S | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/cpu/mpc5xx/start.S b/cpu/mpc5xx/start.S index 087435e5b..95728373f 100644 --- a/cpu/mpc5xx/start.S +++ b/cpu/mpc5xx/start.S @@ -210,7 +210,7 @@ _start_of_vectors:  /* Alignment exception. */  	. = 0x600  Alignment: -	EXCEPTION_PROLOG +	EXCEPTION_PROLOG(SRR0, SRR1)  	mfspr	r4,DAR  	stw	r4,_DAR(r21)  	mfspr	r5,DSISR @@ -228,7 +228,7 @@ Alignment:  /* Program check exception */  	. = 0x700  ProgramCheck: -	EXCEPTION_PROLOG +	EXCEPTION_PROLOG(SRR0, SRR1)  	addi	r3,r1,STACK_FRAME_OVERHEAD  	li	r20,MSR_KERNEL  	rlwimi	r20,r23,0,16,16		/* copy EE bit from saved MSR */ |