mirror of https://github.com/YosysHQ/yosys.git
Docs: Fix missing groups
$lut and $sop were missed in the rebase, and $buf is new to main since the last rebase.
This commit is contained in:
parent
1513366f21
commit
27b8b4e81e
|
@ -89,6 +89,7 @@ endmodule
|
|||
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
||||
//-
|
||||
//- $buf (A, Y)
|
||||
//* group unary
|
||||
//-
|
||||
//- A simple coarse-grain buffer cell type for the experimental buffered-normalized
|
||||
//- mode. Note this cell does't get removed by 'opt_clean' and is not recommended
|
||||
|
@ -1635,6 +1636,7 @@ endmodule
|
|||
|
||||
// --------------------------------------------------------
|
||||
`ifndef SIMLIB_NOLUT
|
||||
//* group logic
|
||||
|
||||
module \$lut (A, Y);
|
||||
|
||||
|
@ -1650,6 +1652,7 @@ endmodule
|
|||
|
||||
`endif
|
||||
// --------------------------------------------------------
|
||||
//* group logic
|
||||
|
||||
module \$sop (A, Y);
|
||||
|
||||
|
|
Loading…
Reference in New Issue