Removed some debugging code.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2550 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2012-09-11 21:21:26 +00:00
parent b59c95062c
commit f3d5beb3d6
1 changed files with 2 additions and 5 deletions

View File

@ -20,7 +20,6 @@
#include <cassert>
#include <iostream>
#include "Debugger.hxx"
#include "Console.hxx"
#include "Settings.hxx"
#include "Switches.hxx"
@ -119,8 +118,6 @@ uInt8 M6532::peek(uInt16 addr)
return myRAM[addr & 0x007f];
}
//cerr << Debugger::debugger().valueToString(addr&0xff, kBASE_2_8) << endl;
switch(addr & 0x07)
{
case 0x00: // SWCHA - Port A I/O Register (Joystick)
@ -291,8 +288,8 @@ uInt8 M6532::updateTimer()
}
else
{
if(timer < 0)
myInterruptFlag |= TIMER_BIT;
// Timer has expired, set flag
myInterruptFlag |= TIMER_BIT;
// According to the M6532 documentation, the timer continues to count
// down to -255 timer clocks after wraparound. However, it isn't