1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-30 07:55:01 +00:00

Logically, I think this should be unsigned.

This commit is contained in:
Thomas Harte 2021-07-18 20:25:22 -04:00
parent a030d9935e
commit 50b9d0e86d

View File

@ -93,7 +93,7 @@ struct Microcycle {
/// Contains a valid combination of the various static constexpr int flags, describing the operation
/// performed by this Microcycle.
int operation = 0;
unsigned int operation = 0;
/// Describes the duration of this Microcycle.
HalfCycles length = HalfCycles(4);