2000-11-30 Joel Sherrill <joel@OARcorp.com>

* cpu_asm.S: Changed "_CPU_Ccontext_switch_restore: typo to
	correct name of _CPU_Context_switch_restore.  Added dummy
	version of exc_utlb_code() so applications would link.
This commit is contained in:
Joel Sherrill
2000-11-30 14:02:33 +00:00
parent 88d7985260
commit 7f8c11c73d
4 changed files with 28 additions and 4 deletions

View File

@@ -1,3 +1,9 @@
2000-11-30 Joel Sherrill <joel@OARcorp.com>
* cpu_asm.S: Changed "_CPU_Ccontext_switch_restore: typo to
correct name of _CPU_Context_switch_restore. Added dummy
version of exc_utlb_code() so applications would link.
2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.

View File

@@ -481,7 +481,7 @@ ENDFRAME(_CPU_Context_restore)
FRAME(_CPU_Context_restore,sp,0,ra)
add a1,a0,zero
j _CPU_Ccontext_switch_restore
j _CPU_Context_switch_restore
nop
ENDFRAME(_CPU_Context_restore)
@@ -867,7 +867,7 @@ _ISR_Handler_1:
* }
*/
/* k0 has the SR interrupt bits */
la t3, _ISR_vector_table
la t3, _ISR_Vector_table
/* The bits you look at can be prioritized here just by */
/* changing what bit is looked at. I.E. SR_IBITx */
@@ -1327,6 +1327,12 @@ FRAME(init_exc_vecs,sp,0,ra)
ENDFRAME(init_exc_vecs)
FRAME(exc_utlb_code,sp,0,ra)
la k0, _ISR_Handler /* XXX not right -- but need to link*/
j k0
nop
ENDFRAME(exc_utlb_code)
FRAME(exc_norm_code,sp,0,ra)
la k0, _ISR_Handler /* generic external int hndlr */
j k0