summary refs log tree commit diff
path: root/.bin
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2016-10-08 00:58:56 -0400
committerJune McEnroe <programble@gmail.com>2016-10-08 00:58:56 -0400
commit154d04a4fa13b41d823932a41b8c779c1fccda33 (patch)
treebcbc7965be4fadb30d69670b944fe5013ec7430c /.bin
parentSet up jrp input loop (diff)
downloadsrc-154d04a4fa13b41d823932a41b8c779c1fccda33.tar.gz
src-154d04a4fa13b41d823932a41b8c779c1fccda33.zip
Fix jrp OR op
Diffstat (limited to '.bin')
-rwxr-xr-x.bin/jrp.c2
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
 };