hypervisor: x86: emulate MOVS instruction

Signed-off-by: Wei Liu <liuwe@microsoft.com>
This commit is contained in:
Wei Liu
2021-01-04 18:34:09 +00:00
committed by Samuel Ortiz
parent b59243f6cf
commit e22b6ec768
4 changed files with 153 additions and 1 deletions
+3 -1
View File
@@ -524,7 +524,9 @@ impl<'a, T: CpuStateManager> Emulator<'a, T> {
(mov, Movzx_r32_rm8),
(mov, Movzx_r64_rm8),
(mov, Movzx_r32_rm16),
(mov, Movzx_r64_rm16)
(mov, Movzx_r64_rm16),
// MOVS
(movs, Movsd_m32_m32)
);
handler