mirror of
https://github.com/YosysHQ/yosys
synced 2025-11-13 09:31:16 +00:00
rtlil: add explanatory note to SigSpec::Chunks
This commit is contained in:
parent
1cf3497d15
commit
0452955069
1 changed files with 3 additions and 0 deletions
|
|
@ -1353,6 +1353,9 @@ public:
|
||||||
return *this;
|
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 {
|
struct Chunks {
|
||||||
Chunks(const SigSpec &spec) : spec(spec) {}
|
Chunks(const SigSpec &spec) : spec(spec) {}
|
||||||
struct const_iterator {
|
struct const_iterator {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue