1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Adds comment to avoid potential future error.

This commit is contained in:
Thomas Harte 2021-07-22 22:00:33 -04:00
parent 87d2fc1491
commit 69d62560b4

View File

@ -65,6 +65,8 @@ struct Microcycle {
/// If set, indicates a read. Otherwise, a write.
static constexpr OperationT Read = 1 << 2;
// Two-bit gap deliberately left here for PermitRead/Write below.
/// A NewAddress cycle is one in which the address strobe is initially low but becomes high;
/// this correlates to states 0 to 5 of a standard read/write cycle.
static constexpr OperationT NewAddress = 1 << 5;