Fixed warnings and whitespace

This commit is contained in:
Bart Trzynadlowski 2016-03-22 01:16:46 +00:00
parent f0488a3c94
commit bd09b3b68b
2 changed files with 4047 additions and 4042 deletions
Src/CPU/Z80

View file

@ -254,8 +254,12 @@ int CZ80::Run(int numCycles)
unsigned int IX = ix;
unsigned int IY = iy;
#endif
unsigned int temp, acu, sum, cbits;
unsigned int op, adr;
unsigned int temp = 0;
unsigned int acu = 0;
unsigned int sum = 0;
unsigned int cbits = 0;
unsigned int op = 0;
unsigned int adr = 0;
int cycles = numCycles;
#ifdef SUPERMODEL_DEBUGGER
@ -3968,7 +3972,7 @@ void CZ80::LoadState(CBlockFile *StateFile, const char *name)
StateFile->Read(&intLine, sizeof(intLine));
}
void CZ80::Init(CBus *BusPtr, int (*INTF)(CZ80 *Z80))
void mCZ80::Init(CBus *BusPtr, int (*INTF)(CZ80 *Z80))
{
Bus = BusPtr;
INTCallback = INTF;

View file

@ -99,7 +99,9 @@
#define Z80_REG16_DE_ 11
#define Z80_REG16_HL_ 12
class Debugger::CZ80Debug;
namespace Debugger {
class CZ80Debug;
}
#endif // SUPERMODEL_DEBUGGER
/*
@ -330,7 +332,6 @@ private:
#ifdef SUPERMODEL_DEBUGGER
int lastCycles;
Debugger::CZ80Debug *Debug;
#endif // SUPERMODEL_DEBUGGER
};