Remove debugging code.

This commit is contained in:
Stephen Anthony 2018-12-18 22:00:01 -03:30
parent 269fc7bc19
commit f33ac273dd
1 changed files with 0 additions and 5 deletions

View File

@ -340,11 +340,6 @@ inline void M6502::_execute(uInt64 cycles, DispatchResult& result)
uInt16 rwpAddr = mySystem->cart().getIllegalRAMAccess();
if(rwpAddr)
{
//////////////////////////////////////////////////////////
// TODO - remove debugging code
cerr << std::hex << "Illegal access: " << rwpAddr
<< " @ " << std::dec << mySystem->cycles() << endl;
//////////////////////////////////////////////////////////
ostringstream msg;
msg << "RWP[@ $" << Common::Base::HEX4 << rwpAddr << "]: ";
result.setDebugger(currentCycles, msg.str(), oldPC);