Implemented arm64 instructions: ldp and stp

This commit is contained in:
2025-03-12 12:29:55 +01:00
parent 03c8dfa34c
commit 450e634d79
8 changed files with 100 additions and 4 deletions

View File

@ -16,6 +16,8 @@ func TestMoveRegisterRegister(t *testing.T) {
}{
{arm.X0, arm.X1, 0xAA0103E0},
{arm.X1, arm.X0, 0xAA0003E1},
{arm.FP, arm.SP, 0x910003FD},
{arm.SP, arm.FP, 0x910003BF},
}
for _, pattern := range usagePatterns {