This is a serious bug in the Pentium and Pentium MMX processors from Intel. The bug was discovered in the end of 1997. There are workarounds for this bug, and they are implemented for example in Linux, Windows 95/98 and Windows NT.

The full instruction is F0 0F C7 C8. This corresponds to LOCK CMPXCHG8B EAX. The instruction is invalid, because CMPXCHG8B works on 64-bit data, and therefore can not have a 32-bit register as destination operand. This should result in an Undefined Instruction (UD) exception, but the LOCK prefix incorrectly locks the bus when the processor tries to read the UD handler address. This causes the processor to hang.

The bug is serious because any normal user on the computer could execute a program with this instruction, and hang the computer. This is especially bad when the computer has multiple users, for example a Linux server.

Sources:
http://support.intel.com/support/processors/pentium/ppiie/
http://www.ddj.com/articles/1998/9805/9805f/9805f.htm