diff options
author | June McEnroe <june@causal.agency> | 2016-10-08 00:58:56 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2016-10-08 00:58:56 -0400 |
commit | 80dada983980e1860c15d3de917f9292e1b7b21e (patch) | |
tree | 44333e4608ac1871629ca9298064ae5300af47ae | |
parent | Set up jrp input loop (diff) | |
download | src-80dada983980e1860c15d3de917f9292e1b7b21e.tar.gz src-80dada983980e1860c15d3de917f9292e1b7b21e.zip |
Fix jrp OR op
-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 }; |