1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-01 13:58:20 +00:00

Fixes PEA.

This commit is contained in:
Thomas Harte 2020-10-28 22:00:28 -04:00
parent 94a6da6b7d
commit 266022b193

View File

@ -656,6 +656,9 @@ struct CPU::WDC65816::ProcessorStorageConstructor {
static void stack_pea(AccessType, bool, const std::function<void(MicroOp)> &target) {
target(CycleFetchIncrementPC); // AAL.
target(CycleFetchIncrementPC); // AAH.
target(OperationCopyInstructionToData);
target(CyclePush); // AAH.
target(CyclePush); // AAL.
}