diff options
author | June McEnroe <programble@gmail.com> | 2016-10-08 00:58:56 -0400 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2016-10-08 00:58:56 -0400 |
commit | 154d04a4fa13b41d823932a41b8c779c1fccda33 (patch) | |
tree | bcbc7965be4fadb30d69670b944fe5013ec7430c /.bin | |
parent | Set up jrp input loop (diff) | |
download | src-154d04a4fa13b41d823932a41b8c779c1fccda33.tar.gz src-154d04a4fa13b41d823932a41b8c779c1fccda33.zip |
Fix jrp OR op
Diffstat (limited to '')
-rwxr-xr-x | .bin/jrp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.bin/jrp.c b/.bin/jrp.c index d31d7993..7fffe83f 100755 --- a/.bin/jrp.c +++ b/.bin/jrp.c @@ -52,7 +52,7 @@ enum { HOP_REM = 0x90d78948, // mov rdi, rdx HOP_NOT = 0x90d7f748, // not rdi HOP_AND = 0xc7214858, // pop rax; and rdi, rax - HOP_OR = 0xc7904858, // pop rax; or rdi, rax + HOP_OR = 0xc7094858, // pop rax; or rdi, rax HOP_XOR = 0xc7314858, // pop rax; xor rdi, rax }; |