Fix from Eric Norum so FPSP is installed before any FP code is actually

exercise.
This commit is contained in:
Joel Sherrill
1997-10-08 18:25:30 +00:00
parent 89f5f5a1d8
commit 58e3dc799a
2 changed files with 18 additions and 0 deletions

View File

@@ -32,6 +32,15 @@ rtems_task Init(
rtems_task_argument ignored
)
{
/*
* Install whatever optional floating point assistance package
* is required by this CPU.
*/
#if (defined (m68040))
M68KFPSPInstallExceptionHandlers ();
#endif
printf( "\n\n*** PARANOIA TEST ***\n" );
paranoia(1, args);
printf( "*** END OF PARANOIA TEST ***\n" );