From 88ce9917e6af7c69d9f1f4287e6d0762dbf58eda Mon Sep 17 00:00:00 2001 From: Stanislav Shwartsman Date: Fri, 15 Nov 2002 13:10:06 +0000 Subject: [PATCH] Replace BX_PANIC to BX_INFO for FXSAVE/FXRSTOR instruction because their is required for booting Windows with SSE enabled. --- bochs/cpu/sse.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bochs/cpu/sse.cc b/bochs/cpu/sse.cc index d2b45bfad..a07b393c4 100644 --- a/bochs/cpu/sse.cc +++ b/bochs/cpu/sse.cc @@ -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);