about summary refs log tree commit diff stats
path: root/subx/022check_instruction.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-07-25 21:06:29 -0700
committerKartik Agaram <vc@akkartik.com>2018-07-25 21:07:36 -0700
commit1b2f5f0b1f11f6ed8fe03ccf191fe604f963607c (patch)
tree3643c5fd925db3768b2420acabe52123d7fbcf59 /subx/022check_instruction.cc
parent431f739ddca73eb105bced65c169963a335e3134 (diff)
downloadmu-1b2f5f0b1f11f6ed8fe03ccf191fe604f963607c.tar.gz
4415
Diffstat (limited to 'subx/022check_instruction.cc')
-rw-r--r--subx/022check_instruction.cc10
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")