about summary refs log tree commit diff stats
path: root/opcodes
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-10-18 08:50:55 -0700
committerKartik Agaram <vc@akkartik.com>2019-10-18 08:50:55 -0700
commit469a1a9ace9b290658beb9d0799b58ce3bc2a4b4 (patch)
tree2b69f1a3b122c21f0ad2210912dc868977bb13cf /opcodes
parentb1635a5c8e25650a19999c246be321a0794eb58a (diff)
downloadmu-469a1a9ace9b290658beb9d0799b58ce3bc2a4b4.tar.gz
5702 - fix a typo in online help
This commit fixes #37. Thanks Thomas Munoz!
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes2
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes b/opcodes
index bebf3052..e222df66 100644
--- a/opcodes
+++ b/opcodes
@@ -93,7 +93,7 @@ Opcodes currently supported by SubX:
   0f 83: jump disp32 bytes away if greater or equal (unsigned), if CF is unset (jcc/jae/jnb)
   0f 84: jump disp32 bytes away if equal, if ZF is set (jcc/jz/je)
   0f 85: jump disp32 bytes away if not equal, if ZF is not set (jcc/jnz/jne)
-  0f 86: jump disp8 bytes away if lesser or equal (unsigned), if ZF is set or CF is set (jcc/jbe/jna)
+  0f 86: jump disp32 bytes away if lesser or equal (unsigned), if ZF is set or CF is set (jcc/jbe/jna)
   0f 87: jump disp32 bytes away if greater (unsigned), if ZF is unset and CF is unset (jcc/ja/jnbe)
   0f 8c: jump disp32 bytes away if lesser (signed), if SF != OF (jcc/jl/jnge)
   0f 8d: jump disp32 bytes away if greater or equal (signed), if SF == OF (jcc/jge/jnl)