From 4662476ec80abec1ec56659bb4c500a1c6adb8d7 Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Tue, 9 Apr 2024 16:13:10 +1200 Subject: [PATCH] Docs: Test $alu with v2 help format --- techlibs/common/simlib.v | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/techlibs/common/simlib.v b/techlibs/common/simlib.v index 60f98af28..71bb58c41 100644 --- a/techlibs/common/simlib.v +++ b/techlibs/common/simlib.v @@ -621,15 +621,12 @@ endmodule // -------------------------------------------------------- -// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| -//- -//- $alu (A, B, CI, BI, X, Y, CO) -//- -//- Arithmetic logic unit. +//* ver 2 +//* short_desc Arithmetic logic unit //- A building block supporting both binary addition/subtraction operations, and //- indirectly, comparison operations. //- Typically created by the `alumacc` pass, which transforms: -//- $add, $sub, $lt, $le, $ge, $gt, $eq, $eqx, $ne, $nex +//- $add, $sub, $lt, $le, $ge, $gt, $eq, $eqx, $ne, $nex //- cells into this $alu cell. //- module \$alu (A, B, CI, BI, X, Y, CO);