Only return a label for IO registers if one has been defined.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2023 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2010-04-23 22:05:57 +00:00
parent 66690033c4
commit dd832f2ef4
2 changed files with 2 additions and 9 deletions

View File

@ -29,10 +29,7 @@
#include "Settings.hxx"
#include "System.hxx"
#include "OSystem.hxx"
#include "Console.hxx"
#include "AtariVox.hxx"
#include "SoundSDL.hxx"
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@ -132,7 +129,7 @@ void SoundSDL::open()
myIsMuted = false;
myFragmentSizeLogBase2 = log((double)myHardwareSpec.samples) / log(2.0);
/*
/*
cerr << "Freq: " << (int)myHardwareSpec.freq << endl;
cerr << "Format: " << (int)myHardwareSpec.format << endl;
cerr << "Channels: " << (int)myHardwareSpec.channels << endl;

View File

@ -376,11 +376,7 @@ const string& CartDebug::getLabel(uInt16 addr, bool isRead, int places) const
uInt16 idx = (addr&0xff) - 0x80;
if(idx < 24)
return result = ourIOMnemonic[idx];
else
{
places = 3; // fall through to calculate actual address
break;
}
break;
}
case ADDR_RAM: