Improved x64 encoder

This commit is contained in:
2024-07-20 12:49:26 +02:00
parent 6b5dd4c687
commit 7c2e373562
9 changed files with 214 additions and 49 deletions

View File

@ -19,5 +19,5 @@ func MoveRegisterNumber32(code []byte, destination cpu.Register, number uint32)
// MoveRegisterRegister64 moves a register value into another register.
func MoveRegisterRegister64(code []byte, destination cpu.Register, source cpu.Register) []byte {
return encode(code, 1, AddressDirect, byte(source), byte(destination), 0x89)
return encode(code, AddressDirect, source, destination, 8, 0x89)
}