mirror of https://github.com/stella-emu/stella.git
Remove debugging code.
This commit is contained in:
parent
269fc7bc19
commit
f33ac273dd
|
@ -340,11 +340,6 @@ inline void M6502::_execute(uInt64 cycles, DispatchResult& result)
|
||||||
uInt16 rwpAddr = mySystem->cart().getIllegalRAMAccess();
|
uInt16 rwpAddr = mySystem->cart().getIllegalRAMAccess();
|
||||||
if(rwpAddr)
|
if(rwpAddr)
|
||||||
{
|
{
|
||||||
//////////////////////////////////////////////////////////
|
|
||||||
// TODO - remove debugging code
|
|
||||||
cerr << std::hex << "Illegal access: " << rwpAddr
|
|
||||||
<< " @ " << std::dec << mySystem->cycles() << endl;
|
|
||||||
//////////////////////////////////////////////////////////
|
|
||||||
ostringstream msg;
|
ostringstream msg;
|
||||||
msg << "RWP[@ $" << Common::Base::HEX4 << rwpAddr << "]: ";
|
msg << "RWP[@ $" << Common::Base::HEX4 << rwpAddr << "]: ";
|
||||||
result.setDebugger(currentCycles, msg.str(), oldPC);
|
result.setDebugger(currentCycles, msg.str(), oldPC);
|
||||||
|
|
Loading…
Reference in New Issue