about summary refs log tree commit diff stats
path: root/subx
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-10-12 21:35:02 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-10-12 21:35:02 -0700
commitd4df57d62a51e26f81f2c6552c1b7b14ff38fe1f (patch)
tree8214c6689535af1f2377d089f71fb2529bef69b4 /subx
parenta7b2a5de68f7fac44bd4d9771616540c54dcdc9d (diff)
downloadmu-d4df57d62a51e26f81f2c6552c1b7b14ff38fe1f.tar.gz
4039
Diffstat (limited to 'subx')
-rw-r--r--subx/011add.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/subx/011add.cc b/subx/011add.cc
index 355e2f69..836b227b 100644
--- a/subx/011add.cc
+++ b/subx/011add.cc
@@ -33,14 +33,14 @@ int32_t* effective_address(uint8_t modrm) {
     // mod 0 is usually indirect addressing
     switch (rm) {
     default:
-      trace(99, "run") << "effective address is mem at address 0x" << std::hex << Reg[rm].u << " (reg " << NUM(rm) << ")" << end();
+      trace(2, "run") << "effective address is mem at address 0x" << std::hex << Reg[rm].u << " (reg " << NUM(rm) << ")" << end();
       assert(Reg[rm].u + sizeof(int32_t) <= Mem.size());
       result = reinterpret_cast<int32_t*>(&Mem.at(Reg[rm].u));  // rely on the host itself being in little-endian order
       break;
-    // End Mod 0 Special-Cases
+    // End Mod 0 Special-cases
     }
     break;
-  // End Mod Special-Cases
+  // End Mod Special-cases
   default:
     cerr << "unrecognized mod bits: " << NUM(mod) << '\n';
     exit(1);