From 46567cd15d6f58561e0b3dbb1e3e770fe517f78e Mon Sep 17 00:00:00 2001 From: tuz358 Date: Mon, 5 Mar 2018 17:22:10 +0900 Subject: [PATCH] Minor fix --- instructions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instructions.cpp b/instructions.cpp index ba79224..b8add2f 100644 --- a/instructions.cpp +++ b/instructions.cpp @@ -34,7 +34,7 @@ void Instructions::init_instructions(){ this->instructions[0xf4] = &Instructions::hlt; this->instructions[0xff] = &Instructions::opcode_ff; - this->instructions[0xcd] = &Instructions::hlt; + this->instructions[0x66] = &Instructions::hlt; } void Instructions::init_modrm(){