diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-07-25 21:06:29 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-07-25 21:07:36 -0700 |
commit | 1b2f5f0b1f11f6ed8fe03ccf191fe604f963607c (patch) | |
tree | 3643c5fd925db3768b2420acabe52123d7fbcf59 /subx | |
parent | 431f739ddca73eb105bced65c169963a335e3134 (diff) | |
download | mu-1b2f5f0b1f11f6ed8fe03ccf191fe604f963607c.tar.gz |
4415
Diffstat (limited to 'subx')
-rw-r--r-- | subx/022check_instruction.cc | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/subx/022check_instruction.cc b/subx/022check_instruction.cc index afa6329f..c6f4d897 100644 --- a/subx/022check_instruction.cc +++ b/subx/022check_instruction.cc @@ -37,10 +37,14 @@ :(before "End Help Texts") put(Help, "instructions", - "Each x86 instruction consists of an instruction or opcode and some number of operands.\n" - "Each operand has a type. An instruction won't have more than one operand of any type.\n" + "Each x86 instruction consists of an instruction or opcode and some number\n" + "of operands.\n" + "Each operand has a type. An instruction won't have more than one operand of\n" + "any type.\n" "Each instruction has some set of allowed operand types. It'll reject others.\n" - "The complete list of operand types: mod, subop, r32 (register), rm32 (register or memory), scale, index, base, disp8, disp16, disp32, imm8, imm32.\n" + "The complete list of operand types: mod, subop, r32 (register), rm32\n" + "(register or memory), scale, index, base, disp8, disp16, disp32, imm8,\n" + "imm32.\n" "Each of these has its own help page. Try reading 'subx help mod' next.\n" ); :(before "End Help Contents") |