1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-08 14:25:05 +00:00

Fix stack usage of JSL.

This commit is contained in:
Thomas Harte
2023-07-30 16:34:42 -04:00
parent 9f1a657cc4
commit acd7f9f4cd

View File

@@ -319,7 +319,7 @@ struct CPU::WDC65816::ProcessorStorageConstructor {
target(CycleFetchIncrementPC); // New PCH. target(CycleFetchIncrementPC); // New PCH.
target(OperationCopyPBRToData); // Copy PBR to the data register. target(OperationCopyPBRToData); // Copy PBR to the data register.
target(CyclePush); // PBR. target(CyclePushNotEmulation); // PBR.
target(CycleFetchPreviousThrowaway); // IO. target(CycleFetchPreviousThrowaway); // IO.
target(CycleFetchPC); // New PBR. target(CycleFetchPC); // New PBR.
@@ -327,8 +327,8 @@ struct CPU::WDC65816::ProcessorStorageConstructor {
target(OperationConstructAbsolute); // Calculate data address. target(OperationConstructAbsolute); // Calculate data address.
target(OperationPerform); // [JSL] target(OperationPerform); // [JSL]
target(CyclePush); // PCH. target(CyclePushNotEmulation); // PCH.
target(CyclePush); // PCL. target(CyclePushNotEmulation); // PCL.
} }
// 5. Absolute long, X; al, x. // 5. Absolute long, X; al, x.