Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mach_override.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan 'Wolf' Rentzsch <jwr.git@redshed.net>2011-11-09 22:34:43 +0400
committerJonathan 'Wolf' Rentzsch <jwr.git@redshed.net>2011-11-09 22:34:43 +0400
commit4a7106c55e554645ae343f777181b51a0ea58aac (patch)
tree9ea82df31cb29212f743e19b79e912832666d77f
parentb5c0803f7172010f23f3738a5e1201fd356b021a (diff)
parent17979957673b02693dccef8d13658b733fe20715 (diff)
Merge pull request #26 from ashcatch/pending_pull_requests
add another 64bit instruction
-rw-r--r--mach_override/mach_override.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mach_override/mach_override.c b/mach_override/mach_override.c
index db59620..24d730e 100644
--- a/mach_override/mach_override.c
+++ b/mach_override/mach_override.c
@@ -597,6 +597,7 @@ static AsmInstructionMatch possibleInstructions[] = {
{ 0x2, {0xFF, 0x00}, {0x85, 0x00} }, // test %rX,%rX
{ 0x5, {0xF8, 0x00, 0x00, 0x00, 0x00}, {0xB8, 0x00, 0x00, 0x00, 0x00} }, // mov $imm, %reg
{ 0x3, {0xFF, 0xFF, 0x00}, {0xFF, 0x77, 0x00} }, // pushq $imm(%rdi)
+ { 0x2, {0xFF, 0xFF}, {0x31, 0xC0} }, // xor %eax, %eax
{ 0x0 }
};
#endif