Removed warning.

This commit is contained in:
Joel Sherrill
2000-01-14 14:55:37 +00:00
parent c819ea440d
commit 752badac5a
4 changed files with 8 additions and 4 deletions

View File

@@ -34,8 +34,10 @@ void _CPU_Initialize(
void (*thread_dispatch) /* ignored on this CPU */
)
{
#if CPU_HARDWARE_FP
register unsigned16 fp_status asm ("ax");
register void *fp_context;
#endif
_CPU_Table = *cpu_table;

View File

@@ -163,7 +163,7 @@ void _CPU_Install_interrupt_stack( void )
i960_PRCB *prcb = _CPU_Table.Prcb;
unsigned32 level;
#if defined(__i960RP__) || defined(__i960_RP__)
int *isp = (int *) ISP_ADDR;
unsigned32 *isp = (int *) ISP_ADDR;
#endif
/*
@@ -178,7 +178,7 @@ void _CPU_Install_interrupt_stack( void )
#if defined(__i960CA__) || defined(__i960_CA__) || defined(__i960CA)
soft_reset( prcb );
#elif defined(__i960RP__) || defined(__i960_RP__) || defined(__i960RP)
*isp = prcb->intr_stack;
*isp = (unsigned32) prcb->intr_stack;
#endif
_CPU_ISR_Enable( level );