about summary refs log tree commit diff stats
path: root/subx/030check_operands.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-08-04 21:29:58 -0700
committerKartik Agaram <vc@akkartik.com>2018-08-04 21:29:58 -0700
commita9985c33cbf9214c1a1de087b4491bf67f69f817 (patch)
tree67921ac4ce112eae31a9e218b8c9b98d5623e702 /subx/030check_operands.cc
parent8d4e65237862bb9865f3502a8d9474c78a18cf30 (diff)
downloadmu-a9985c33cbf9214c1a1de087b4491bf67f69f817.tar.gz
4481
Diffstat (limited to 'subx/030check_operands.cc')
-rw-r--r--subx/030check_operands.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/subx/030check_operands.cc b/subx/030check_operands.cc
index 0a233272..74a44740 100644
--- a/subx/030check_operands.cc
+++ b/subx/030check_operands.cc
@@ -31,6 +31,9 @@
 //: The actual opcodes (first 1-3 bytes of each instruction) will continue to
 //: be at the start of each line. The x86 instruction set is a mess, and
 //: opcodes often don't admit good names.
+:(before "End Transforms")
+// Begin Level-2 Transforms
+// End Level-2 Transforms
 
 :(before "End Help Texts")
 put(Help, "instructions",
@@ -58,7 +61,7 @@ cerr << "  instructions\n";
   cd                                                                                                                                                # int ??
 +error: 'cd' (software interrupt): missing imm8 operand
 
-:(before "End Transforms")
+:(before "End Level-2 Transforms")
 Transform.push_back(check_operands);
 
 :(code)