vars used without being init cleanup
This commit is contained in:
parent
1a41de2459
commit
1bbbdd4ab3
1 changed files with 2 additions and 2 deletions
|
@ -920,7 +920,7 @@ static DWORD Cpu65C02 (DWORD uTotalCycles)
|
||||||
WORD val;
|
WORD val;
|
||||||
AF_TO_EF
|
AF_TO_EF
|
||||||
ULONG uExecutedCycles = 0;
|
ULONG uExecutedCycles = 0;
|
||||||
BOOL bSlowerOnPagecross; // Set if opcode writes to memory (eg. ASL, STA)
|
BOOL bSlowerOnPagecross = 0; // Set if opcode writes to memory (eg. ASL, STA)
|
||||||
WORD base;
|
WORD base;
|
||||||
bool bBreakOnInvalid = false;
|
bool bBreakOnInvalid = false;
|
||||||
|
|
||||||
|
@ -1228,7 +1228,7 @@ static DWORD Cpu6502 (DWORD uTotalCycles)
|
||||||
WORD val;
|
WORD val;
|
||||||
AF_TO_EF
|
AF_TO_EF
|
||||||
ULONG uExecutedCycles = 0;
|
ULONG uExecutedCycles = 0;
|
||||||
BOOL bSlowerOnPagecross; // Set if opcode writes to memory (eg. ASL, STA)
|
BOOL bSlowerOnPagecross = 0; // Set if opcode writes to memory (eg. ASL, STA)
|
||||||
WORD base;
|
WORD base;
|
||||||
bool bBreakOnInvalid = false;
|
bool bBreakOnInvalid = false;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue