mirror of https://github.com/stella-emu/stella.git
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:
parent
132b947ee2
commit
b65adcd49b
|
@ -64,7 +64,7 @@
|
||||||
|
|
||||||
* Added 'resolvedata' commandline argument and associated UI item, used
|
* Added 'resolvedata' commandline argument and associated UI item, used
|
||||||
to set the "resolve data sections" config option in Distella
|
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
|
* Added 'runtopc' debugger command, used to step until encountering the
|
||||||
given program counter. This is also available in the ROM disassembly
|
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
|
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
|
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
|
compiled with the very latest compiler (Clang), resulting in
|
||||||
better performance.
|
better performance.
|
||||||
|
|
||||||
|
|
|
@ -323,7 +323,6 @@ bool CartDebug::addLabel(const string& label, uInt16 address)
|
||||||
case ADDR_RIOT:
|
case ADDR_RIOT:
|
||||||
return false;
|
return false;
|
||||||
default:
|
default:
|
||||||
cerr << "addLabel: label = " << label << ", address = " << hex << address << endl;
|
|
||||||
removeLabel(label);
|
removeLabel(label);
|
||||||
myUserAddresses.insert(make_pair(label, address));
|
myUserAddresses.insert(make_pair(label, address));
|
||||||
myUserLabels.insert(make_pair(address, label));
|
myUserLabels.insert(make_pair(address, label));
|
||||||
|
@ -338,7 +337,6 @@ bool CartDebug::removeLabel(const string& label)
|
||||||
LabelToAddr::iterator iter = myUserAddresses.find(label);
|
LabelToAddr::iterator iter = myUserAddresses.find(label);
|
||||||
if(iter != myUserAddresses.end())
|
if(iter != myUserAddresses.end())
|
||||||
{
|
{
|
||||||
cerr << "removeLabel: label = " << label << endl;
|
|
||||||
// Erase the label
|
// Erase the label
|
||||||
myUserAddresses.erase(iter);
|
myUserAddresses.erase(iter);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue