Disassembly of next instruction is back to the debugger
authorJorge Gorbe Moya <jgorbe@dsic.upv.es>
Fri, 12 Sep 2008 17:30:21 +0000 (19:30 +0200)
committerJorge Gorbe Moya <jgorbe@dsic.upv.es>
Fri, 12 Sep 2008 17:30:21 +0000 (19:30 +0200)
gbcore.cc

index a208899fe9152eeae74ec06a25e9c0f3bde9dd07..4187d93e60b930fbf92c27361648c61d62dd82ca 100644 (file)
--- a/gbcore.cc
+++ b/gbcore.cc
@@ -4,6 +4,7 @@
 #include "MBC.h"
 #include "Logger.h"
 #include "util.h"
+#include "wendi/disasm.h"
 #include <sstream>
 #include <iomanip>
 #include <string>
@@ -1444,14 +1445,12 @@ GameBoy::run_status GameBoy::run()
 
 std::string GameBoy::status_string()
 {
-       std::string disassembled_instruction;
-       //int length;
-       //disassemble_opcode(regs.PC, disassembled_instruction, length);
+        Instruction ins(disassemble_opcode(*this, regs.PC));
 
        std::ostringstream result;
        result << "t = " << std::dec << cycle_count << 
                "\tPC = " << std::hex << std::setw(4) << std::setfill('0') << regs.PC << 
-               "\t" << disassembled_instruction << std::endl <<
+               "\t" << ins.all << std::endl <<
                "A = " << std::hex << std::setw(2) << std::setfill('0') << int(regs.A) <<
                " B = " << std::hex << std::setw(2) << std::setfill('0') << int(regs.B) <<
                " C = " << std::hex << std::setw(2) << std::setfill('0') << int(regs.C) <<