mirror of https://github.com/stella-emu/stella.git
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:
parent
b59c95062c
commit
f3d5beb3d6
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue