about summary refs log tree commit diff stats
path: root/033check_operands.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-09-27 21:39:50 -0700
committerKartik Agaram <vc@akkartik.com>2020-09-27 21:39:50 -0700
commitf068bda98e0218df6b551a6cd8e5520255866308 (patch)
tree3d7c399b80c7dbff4b4b4c65178d5c332754af93 /033check_operands.cc
parent31e6ed17f84ff5b67803e534cde104b331dd495d (diff)
downloadmu-f068bda98e0218df6b551a6cd8e5520255866308.tar.gz
6886 - floating-point division
Diffstat (limited to '033check_operands.cc')
-rw-r--r--033check_operands.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/033check_operands.cc b/033check_operands.cc
index 3e1f12d1..7d73c97f 100644
--- a/033check_operands.cc
+++ b/033check_operands.cc
@@ -689,6 +689,7 @@ map</*op*/string, /*bitvector*/uint8_t> Permitted_operands_f3_0f;
 //  imm32 imm8  disp32 |disp16  disp8 subop modrm
 //  0     0     0      |0       0     0     1
 put_new(Permitted_operands_f3_0f, "2a", 0x01);
+put_new(Permitted_operands_f3_0f, "5e", 0x01);
 
 :(code)
 void check_operands_0f(const line& inst, const word& op) {