[abi] Added support for pushw imm (X86/X64)

This commit is contained in:
kobalicek
2025-03-09 19:27:12 +01:00
parent 04d05cdc2f
commit 4111caeca4
8 changed files with 1492 additions and 1472 deletions

View File

@@ -710,6 +710,8 @@ static void ASMJIT_NOINLINE testX86AssemblerBase(AssemblerTester<x86::Assembler>
TEST_INSTRUCTION("60" , pushad());
TEST_INSTRUCTION("669C" , pushf());
TEST_INSTRUCTION("9C" , pushfd());
TEST_INSTRUCTION("66680100" , pushw(1));
TEST_INSTRUCTION("66683412" , pushw(0x1234));
TEST_INSTRUCTION("D2D1" , rcl(cl, cl));
TEST_INSTRUCTION("D0D1" , rcl(cl, 1));
TEST_INSTRUCTION("D2D5" , rcl(ch, cl));