Replace BX_PANIC to BX_INFO for FXSAVE/FXRSTOR instruction

because their is required for booting Windows with SSE enabled.
This commit is contained in:
Stanislav Shwartsman 2002-11-15 13:10:06 +00:00
parent 121de7d960
commit 88ce9917e6

View File

@ -74,7 +74,7 @@ void BX_CPU_C::STMXCSR(bxInstruction_c *i)
void BX_CPU_C::FXSAVE(bxInstruction_c *i)
{
#if BX_SUPPORT_SSE >= 1
BX_PANIC(("FXSAVE: SSE instruction still not implemented"));
BX_INFO(("FXSAVE: SSE instruction still not implemented"));
#else
BX_INFO(("FXSAVE: SSE not supported in current configuration"));
UndefinedOpcode(i);
@ -84,7 +84,7 @@ void BX_CPU_C::FXSAVE(bxInstruction_c *i)
void BX_CPU_C::FXRSTOR(bxInstruction_c *i)
{
#if BX_SUPPORT_SSE >= 1
BX_PANIC(("FXRSTOR : SSE instruction still not implemented"));
BX_INFO(("FXRSTOR : SSE instruction still not implemented"));
#else
BX_INFO(("FXRSTOR: SSE not supported in current configuration"));
UndefinedOpcode(i);