about summary refs log tree commit diff stats
path: root/subx/010core.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-10-11 02:10:32 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-10-11 02:10:32 -0700
commite307a8070590350c73020cd3fa9511f776194f74 (patch)
tree631f3ec032e835bef62dbfea01737c57ce03ed44 /subx/010core.cc
parent52ea31027b500c1e5d4281e9b41b71fd184d8be9 (diff)
downloadmu-e307a8070590350c73020cd3fa9511f776194f74.tar.gz
4017
Diffstat (limited to 'subx/010core.cc')
-rw-r--r--subx/010core.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/subx/010core.cc b/subx/010core.cc
index 611b3f33..28cccd4f 100644
--- a/subx/010core.cc
+++ b/subx/010core.cc
@@ -122,25 +122,25 @@ void run_one_instruction() {
   // End Single-Byte Opcodes
   case 0x0f:
     switch(op2 = next()) {
-    // End Two-Byte Opcodes Starting With 0x0f
+    // End Two-Byte Opcodes Starting With 0f
     default:
-      cerr << "unrecognized second opcode after 0x0f: " << std::hex << op2 << '\n';
+      cerr << "unrecognized second opcode after 0f: " << std::hex << op2 << '\n';
       exit(1);
     }
     break;
   case 0xf3:
     switch(op2 = next()) {
-    // End Two-Byte Opcodes Starting With 0xf3
+    // End Two-Byte Opcodes Starting With f3
     case 0x0f:
       switch(op3 = next()) {
-      // End Three-Byte Opcodes Starting With 0xf3 0x0f
+      // End Three-Byte Opcodes Starting With f3 0f
       default:
-        cerr << "unrecognized third opcode after 0xf3 0x0f: " << std::hex << op3 << '\n';
+        cerr << "unrecognized third opcode after f3 0f: " << std::hex << op3 << '\n';
         exit(1);
       }
       break;
     default:
-      cerr << "unrecognized second opcode after 0xf3: " << std::hex << op2 << '\n';
+      cerr << "unrecognized second opcode after f3: " << std::hex << op2 << '\n';
       exit(1);
     }
     break;