From 0f1bce0f32a8429fc414f92cb6b85ff0d30b5d8f Mon Sep 17 00:00:00 2001 From: Yang Liu Date: Sat, 17 Aug 2024 00:16:20 +0800 Subject: [RV64_DYNAREC] Added more opcodes (#1740) * [RV64_DYNAREC] Added more opcodes * more opcodes * more --- src/emu/x64run660f.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/emu') diff --git a/src/emu/x64run660f.c b/src/emu/x64run660f.c index 84ed4e25..35fd6eab 100644 --- a/src/emu/x64run660f.c +++ b/src/emu/x64run660f.c @@ -966,7 +966,7 @@ uintptr_t Run660F(x64emu_t *emu, rex_t rex, uintptr_t addr) } break; - case 0x0C: /* PBLENDPS Gx, Ex, Ib */ + case 0x0C: /* BLENDPS Gx, Ex, Ib */ nextop = F8; GETEX(1); GETGX; @@ -976,7 +976,7 @@ uintptr_t Run660F(x64emu_t *emu, rex_t rex, uintptr_t addr) GX->ud[i] = EX->ud[i]; } break; - case 0x0D: /* PBLENDPD Gx, Ex, Ib */ + case 0x0D: /* BLENDPD Gx, Ex, Ib */ nextop = F8; GETEX(1); GETGX; -- cgit 1.4.1