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