From 27b8b4e81e169cc008ed16c1390790b19a883420 Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Tue, 15 Oct 2024 11:08:30 +1300 Subject: [PATCH] Docs: Fix missing groups $lut and $sop were missed in the rebase, and $buf is new to main since the last rebase. --- techlibs/common/simlib.v | 3 +++ 1 file changed, 3 insertions(+) diff --git a/techlibs/common/simlib.v b/techlibs/common/simlib.v index 3c429d757..df9e1feb1 100644 --- a/techlibs/common/simlib.v +++ b/techlibs/common/simlib.v @@ -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);