From 23e3b9a32b247332d669c4a355d4553b5c9d4aa1 Mon Sep 17 00:00:00 2001 From: chad Date: Sun, 13 Oct 2013 21:14:35 -0400 Subject: [PATCH] Register names are decimal. --- src/core.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.cpp b/src/core.cpp index 3835ef50..a4fc57aa 100644 --- a/src/core.cpp +++ b/src/core.cpp @@ -117,7 +117,7 @@ void Core::step() { if (USE_DEBUG >= 3) { D(3, "Register state:"); for (unsigned i = 0; i < reg[0].size(); ++i) { - D_RAW(" %r" << i << ':'); + D_RAW(" %r" << dec << i << ':'); for (unsigned j = 0; j < reg.size(); ++j) D_RAW(' ' << hex << reg[j][i] << ' '); D_RAW('(' << shadowReg[i] << ')' << endl);