1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-09 01:29:44 +00:00

Fix template parameter reference.

This commit is contained in:
Thomas Harte 2024-03-04 13:25:40 -05:00
parent 79865e295b
commit 61d4c69e45
2 changed files with 2 additions and 2 deletions

View File

@ -162,7 +162,7 @@ struct Registers {
break;
}
set_pc(uint32_t(exception));
set_pc(uint32_t(type));
}
// MARK: - Condition tests.

View File

@ -34,7 +34,7 @@ enum Register {
X,
Y,
// These exist on a 65816 only.
// These `ex`ist on a 65816 only.
EmulationFlag,
DataBank,
ProgramBank,