1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 02:13:56 +09:00

LibX86: Decode PADDB, PADDW and PADDD

This commit is contained in:
Andreas Kling 2020-04-11 13:57:20 +02:00
parent 16455e91db
commit 95df0847c5
Notes: sideshowbarker 2024-07-19 07:43:32 +09:00

View file

@ -828,6 +828,9 @@ void build_opcode_tables_if_needed()
build0F(0xBD, "BSR", OP_reg16_RM16, OP_reg32_RM32);
build0F(0xBE, "MOVSX", OP_reg16_RM8, OP_reg32_RM8);
build0F(0xBF, "0xBF", OP, "MOVSX", OP_reg32_RM16);
build0F(0xFC, "PADDB", OP_mm1_mm2m64);
build0F(0xFD, "PADDW", OP_mm1_mm2m64);
build0F(0xFE, "PADDD", OP_mm1_mm2m64);
build0F(0xFF, "UD0", OP);
has_built_tables = true;