Change BX_PANIC to BX_INFO when behaviour exactly matches Intel docs

This commit is contained in:
Stanislav Shwartsman 2003-10-06 10:01:12 +00:00
parent c249cc8709
commit e57662214a

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: segment_ctrl.cc,v 1.10 2002-09-20 03:52:58 kevinlawton Exp $
// $Id: segment_ctrl.cc,v 1.11 2003-10-06 10:01:12 sshwarts Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001 MandrakeSoft S.A.
@ -80,7 +80,7 @@ BX_CPU_C::LES_GvMp(bxInstruction_c *i)
BX_CPU_C::LDS_GvMp(bxInstruction_c *i)
{
if (i->modC0()) {
BX_PANIC(("invalid use of LDS, must use memory reference!"));
BX_INFO(("invalid use of LDS, must use memory reference!"));
UndefinedOpcode(i);
}
@ -118,7 +118,7 @@ BX_CPU_C::LFS_GvMp(bxInstruction_c *i)
#else /* 386+ */
if (i->modC0()) {
BX_PANIC(("invalid use of LFS, must use memory reference!"));
BX_INFO(("invalid use of LFS, must use memory reference!"));
UndefinedOpcode(i);
}
@ -155,7 +155,7 @@ BX_CPU_C::LGS_GvMp(bxInstruction_c *i)
#else /* 386+ */
if (i->modC0()) {
BX_PANIC(("invalid use of LGS, must use memory reference!"));
BX_INFO(("invalid use of LGS, must use memory reference!"));
UndefinedOpcode(i);
}
@ -192,7 +192,7 @@ BX_CPU_C::LSS_GvMp(bxInstruction_c *i)
#else /* 386+ */
if (i->modC0()) {
BX_PANIC(("invalid use of LSS, must use memory reference!"));
BX_INFO(("invalid use of LSS, must use memory reference!"));
UndefinedOpcode(i);
}