report undefined opcode if not implemented instead of panicing for RDTSC

This commit is contained in:
Todd T.Fries 2001-05-16 17:27:01 +00:00
parent 3c7414a418
commit a628039f5f
1 changed files with 2 additions and 1 deletions

View File

@ -1131,7 +1131,8 @@ BX_CPU_C::RSM(BxInstruction_t *i)
BX_CPU_C::RDTSC(BxInstruction_t *i)
{
#if BX_CPU_LEVEL >= 5
BX_PANIC(("RDTSC: not implemented yet\n"));
BX_ERROR(("RDTSC: not implemented yet\n"));
UndefinedOpcode(i);
#else
UndefinedOpcode(i);
#endif