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:
Krystine Sherwin 2024-10-15 11:08:30 +13:00
parent 1513366f21
commit 27b8b4e81e
No known key found for this signature in database
1 changed files with 3 additions and 0 deletions

View File

@ -89,6 +89,7 @@ endmodule
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| // |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
//- //-
//- $buf (A, Y) //- $buf (A, Y)
//* group unary
//- //-
//- A simple coarse-grain buffer cell type for the experimental buffered-normalized //- 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 //- mode. Note this cell does't get removed by 'opt_clean' and is not recommended
@ -1635,6 +1636,7 @@ endmodule
// -------------------------------------------------------- // --------------------------------------------------------
`ifndef SIMLIB_NOLUT `ifndef SIMLIB_NOLUT
//* group logic
module \$lut (A, Y); module \$lut (A, Y);
@ -1650,6 +1652,7 @@ endmodule
`endif `endif
// -------------------------------------------------------- // --------------------------------------------------------
//* group logic
module \$sop (A, Y); module \$sop (A, Y);