Removed some debugging code, and tweaked the docs a little.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2006 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2010-04-12 22:44:30 +00:00
parent 132b947ee2
commit b65adcd49b
2 changed files with 2 additions and 4 deletions

View File

@ -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.

View File

@ -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);