diff --git a/Changes.txt b/Changes.txt index b82ddbcb9..2e3c3661f 100644 --- a/Changes.txt +++ b/Changes.txt @@ -64,7 +64,7 @@ * Added 'resolvedata' commandline argument and associated UI item, used to set the "resolve data sections" config option in Distella - (vs. treating all data as code). + (vs. treating all address space as code). * Added 'runtopc' debugger command, used to step until encountering the given program counter. This is also available in the ROM disassembly @@ -100,7 +100,7 @@ Two versions are available: the first is a 32-bit Universal Binary for OSX 10.4 - 10.6, and the second is 32/64-bit Intel-only for - OSX 10.5 - 10.6 (64-bit requires 10.6). The Intel version is + OSX 10.4 - 10.6 (64-bit requires 10.6). The Intel version is compiled with the very latest compiler (Clang), resulting in better performance. diff --git a/src/debugger/CartDebug.cxx b/src/debugger/CartDebug.cxx index 750d16883..f427a7745 100644 --- a/src/debugger/CartDebug.cxx +++ b/src/debugger/CartDebug.cxx @@ -323,7 +323,6 @@ bool CartDebug::addLabel(const string& label, uInt16 address) case ADDR_RIOT: return false; default: -cerr << "addLabel: label = " << label << ", address = " << hex << address << endl; removeLabel(label); myUserAddresses.insert(make_pair(label, address)); myUserLabels.insert(make_pair(address, label)); @@ -338,7 +337,6 @@ bool CartDebug::removeLabel(const string& label) LabelToAddr::iterator iter = myUserAddresses.find(label); if(iter != myUserAddresses.end()) { -cerr << "removeLabel: label = " << label << endl; // Erase the label myUserAddresses.erase(iter);