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