mirror of
https://github.com/YosysHQ/yosys
synced 2025-09-04 09:07:42 +00:00
Various documentation updates
This commit is contained in:
parent
420bc05627
commit
b9f2127f5d
13 changed files with 1277 additions and 108 deletions
|
@ -13,7 +13,7 @@ module axis_master(aclk, aresetn, tvalid, tready, tdata);
|
|||
if (tvalid && tready)
|
||||
tvalid <= 0;
|
||||
if (!tvalid || !tready) begin
|
||||
// ^- should be not inverted!
|
||||
// ^- should not be inverted!
|
||||
state = state ^ state << 13;
|
||||
state = state ^ state >> 7;
|
||||
state = state ^ state << 17;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue