mirror of
https://github.com/TomHarte/CLK.git
synced 2025-08-15 14:27:29 +00:00
Adds comment to avoid potential future error.
This commit is contained in:
@@ -65,6 +65,8 @@ struct Microcycle {
|
|||||||
/// If set, indicates a read. Otherwise, a write.
|
/// If set, indicates a read. Otherwise, a write.
|
||||||
static constexpr OperationT Read = 1 << 2;
|
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;
|
/// 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.
|
/// this correlates to states 0 to 5 of a standard read/write cycle.
|
||||||
static constexpr OperationT NewAddress = 1 << 5;
|
static constexpr OperationT NewAddress = 1 << 5;
|
||||||
|
Reference in New Issue
Block a user