Fixed BX_ERROR message in LTR instruction

This commit is contained in:
Stanislav Shwartsman 2008-01-29 06:23:49 +00:00
parent 5daa9c5975
commit 9f4dd0df8a

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: protect_ctrl.cc,v 1.72 2008-01-20 17:46:02 sshwarts Exp $
// $Id: protect_ctrl.cc,v 1.73 2008-01-29 06:23:49 sshwarts Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001 MandrakeSoft S.A.
@ -460,7 +460,7 @@ void BX_CPU_C::LTR_Ew(bxInstruction_c *i)
/* #NP(selector) if TSS descriptor is not present */
if (! IS_PRESENT(descriptor)) {
BX_ERROR(("LTR: LDT descriptor not present!"));
BX_ERROR(("LTR: TSS descriptor not present!"));
exception(BX_NP_EXCEPTION, raw_selector & 0xfffc, 0);
}