X Tutup
Skip to content

Commit 7037bdd

Browse files
committed
PCE: Fixed TMA op flag behavior
TMA should not modify flags
1 parent 735e428 commit 7037bdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Core/PCE/PceCpu.Instructions.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ void PceCpu::TMA()
634634
Idle();
635635
Idle();
636636
#ifndef DUMMYCPU
637-
SetA(_memoryManager->GetMprValue(GetOperand()));
637+
_state.A = _memoryManager->GetMprValue(GetOperand());
638638
#endif
639639
}
640640

0 commit comments

Comments
 (0)
X Tutup