diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2017-10-11 02:10:32 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2017-10-11 02:10:32 -0700 |
commit | e307a8070590350c73020cd3fa9511f776194f74 (patch) | |
tree | 631f3ec032e835bef62dbfea01737c57ce03ed44 | |
parent | 52ea31027b500c1e5d4281e9b41b71fd184d8be9 (diff) | |
download | mu-e307a8070590350c73020cd3fa9511f776194f74.tar.gz |
4017
-rw-r--r-- | subx/010core.cc | 12 |
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; |