diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-02-01 12:14:12 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-02-01 12:14:20 -0800 |
commit | 924ed08aca2fe78cc4d1dd1a0538434f0846e717 (patch) | |
tree | 82ef65c61ef037b82b85766f2f41478c828226fa /subx_opcodes | |
parent | 9977cfe53cc95df50f5fb813de327ca0887c5176 (diff) | |
download | mu-924ed08aca2fe78cc4d1dd1a0538434f0846e717.tar.gz |
5968
Diffstat (limited to 'subx_opcodes')
-rw-r--r-- | subx_opcodes | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subx_opcodes b/subx_opcodes index e222df66..a44e2aba 100644 --- a/subx_opcodes +++ b/subx_opcodes @@ -100,7 +100,7 @@ Opcodes currently supported by SubX: 0f 8e: jump disp32 bytes away if lesser or equal (signed), if ZF is set or SF != OF (jcc/jle/jng) 0f 8f: jump disp32 bytes away if greater (signed), if ZF is unset and SF == OF (jcc/jg/jnle) 0f af: multiply rm32 into r32 (imul) -Run `subx help instructions` for details on words like 'r32' and 'disp8'. +Run `bootstrap help instructions` for details on words like 'r32' and 'disp8'. For complete details on these instructions, consult the IA-32 manual (volume 2). There's various versions of it online, such as https://c9x.me/x86. The mnemonics in brackets will help you locate each instruction. |