mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-18 01:30:56 +00:00
Adds comment to avoid potential future error.
This commit is contained in:
parent
87d2fc1491
commit
69d62560b4
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user