CPU: TSC/TDC/TCD always transfer a full 16-bit
This commit is contained in:
parent
fb8a9f18ed
commit
1a90a36d3c
1 changed files with 2 additions and 2 deletions
|
@ -916,12 +916,12 @@ void Cpu::TCS()
|
|||
|
||||
void Cpu::TDC()
|
||||
{
|
||||
SetRegister(_state.A, _state.D, CheckFlag(ProcFlags::MemoryMode8));
|
||||
SetRegister(_state.A, _state.D, false);
|
||||
}
|
||||
|
||||
void Cpu::TSC()
|
||||
{
|
||||
SetRegister(_state.A, _state.SP, CheckFlag(ProcFlags::MemoryMode8));
|
||||
SetRegister(_state.A, _state.SP, false);
|
||||
}
|
||||
|
||||
void Cpu::TSX()
|
||||
|
|
Loading…
Add table
Reference in a new issue