From d4df57d62a51e26f81f2c6552c1b7b14ff38fe1f Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Thu, 12 Oct 2017 21:35:02 -0700 Subject: 4039 --- subx/011add.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'subx') 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(&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); -- cgit 1.4.1-2-gfad0