3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-11-13 01:21:15 +00:00

rtlil: add explanatory note to SigSpec::Chunks

This commit is contained in:
Emil J. Tywoniak 2025-11-10 12:02:21 +01:00
parent 1cf3497d15
commit 0452955069

View file

@ -1353,6 +1353,9 @@ public:
return *this;
}
// SigSpec::Chunks holds one reconstructed chunk at a time
// to provide the SigSpec::chunks() read-only chunks view
// since vector<SigChunk> SigSpec::chunks_ has been removed
struct Chunks {
Chunks(const SigSpec &spec) : spec(spec) {}
struct const_iterator {