From d80d4dc51c2deebbd26b9eab6af00298e979c957 Mon Sep 17 00:00:00 2001 From: Saish Karole <72208314+NachtSpyder04@users.noreply.github.com> Date: Sat, 17 Aug 2024 15:47:00 +0530 Subject: [PATCH 1/3] [Docs]:Add new cell type help messages (#1) * add shift operators description * update shift operations' descriptions, add desciptions for add, sub, logic_*, tribuf, mux, demux, concat, pow and comparison operators --- techlibs/common/simlib.v | 141 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 141 insertions(+) diff --git a/techlibs/common/simlib.v b/techlibs/common/simlib.v index 7dc03da6d..de7726582 100644 --- a/techlibs/common/simlib.v +++ b/techlibs/common/simlib.v @@ -371,6 +371,12 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $shl (A, B, Y) +//- +//- A logical shift-left operation. This corresponds to the Verilog '<<' operator. +//- module \$shl (A, B, Y); parameter A_SIGNED = 0; @@ -395,6 +401,12 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $shr (A, B, Y) +//- +//- A logical shift-right operation. This corresponds to the Verilog '>>' operator. +//- module \$shr (A, B, Y); parameter A_SIGNED = 0; @@ -419,6 +431,12 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $sshl (A, B, Y) +//- +//- An arithmatic shift-left operation. This corresponds to the Verilog '<<<' operator. +//- module \$sshl (A, B, Y); parameter A_SIGNED = 0; @@ -443,6 +461,12 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $sshr (A, B, Y) +//- +//- An arithmatic shift-right operation. This corresponds to the Verilog '>>>' operator. +//- module \$sshr (A, B, Y); parameter A_SIGNED = 0; @@ -639,6 +663,12 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $lt (A, B, Y) +//- +//- A less-than comparison between inputs 'A' and 'B'. This corresponds to the Verilog '<' operator. +//- module \$lt (A, B, Y); parameter A_SIGNED = 0; @@ -663,6 +693,12 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $le (A, B, Y) +//- +//- A less-than-or-equal-to comparison between inputs 'A' and 'B'. This corresponds to the Verilog '<=' operator. +//- module \$le (A, B, Y); parameter A_SIGNED = 0; @@ -687,6 +723,12 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $eq (A, B, Y) +//- +//- An equality comparison between inputs 'A' and 'B'. This corresponds to the Verilog '==' operator. +//- module \$eq (A, B, Y); parameter A_SIGNED = 0; @@ -711,6 +753,12 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $ne (A, B, Y) +//- +//- An inequality comparison between inputs 'A' and 'B'. This corresponds to the Verilog '!=' operator. +//- module \$ne (A, B, Y); parameter A_SIGNED = 0; @@ -735,6 +783,13 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $eqx (A, B, Y) +//- +//- An exact equality comparison between inputs 'A' and 'B'. This corresponds to the Verilog '===' operator. +//- Unlike equality comparison that can give 'x' as output, an exact equality comparison will strictly give '0' or '1' as output. +//- module \$eqx (A, B, Y); parameter A_SIGNED = 0; @@ -759,6 +814,13 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $nex (A, B, Y) +//- +//- An exact inequality comparison between inputs 'A' and 'B'. This corresponds to the Verilog '!==' operator. +//- Unlike inequality comparison that can give 'x' as output, an exact inequality comparison will strictly give '0' or '1' as output. +//- module \$nex (A, B, Y); parameter A_SIGNED = 0; @@ -783,6 +845,12 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $ge (A, B, Y) +//- +//- A greater-than-or-equal-to comparison between inputs 'A' and 'B'. This corresponds to the Verilog '>=' operator. +//- module \$ge (A, B, Y); parameter A_SIGNED = 0; @@ -807,6 +875,12 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $gt (A, B, Y) +//- +//- A greater-than comparison between inputs 'A' and 'B'. This corresponds to the Verilog '>' operator. +//- module \$gt (A, B, Y); parameter A_SIGNED = 0; @@ -831,6 +905,12 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $add (A, B, Y) +//- +//- Addition of inputs 'A' and 'B'. This corresponds to the Verilog '+' operator. +//- module \$add (A, B, Y); parameter A_SIGNED = 0; @@ -855,6 +935,12 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $sub (A, B, Y) +//- +//- Subtraction between inputs 'A' and 'B'. This corresponds to the Verilog '-' operator. +//- module \$sub (A, B, Y); parameter A_SIGNED = 0; @@ -879,6 +965,12 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $mul (A, B, Y) +//- +//- Multiplication of inputs 'A' and 'B'. This corresponds to the Verilog '*' operator. +//- module \$mul (A, B, Y); parameter A_SIGNED = 0; @@ -1191,6 +1283,13 @@ endgenerate endmodule // -------------------------------------------------------- + +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $pow (A, B, Y) +//- +//- Exponentiation of inputs (Y = A ** B). This corresponds to the Verilog '**' operator. +//- `ifndef SIMLIB_NOPOW module \$pow (A, B, Y); @@ -1222,6 +1321,12 @@ endmodule `endif // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $logic_not (A, Y) +//- +//- A logical inverter. This corresponds to the Verilog unary prefix '!' operator. +//- module \$logic_not (A, Y); parameter A_SIGNED = 0; @@ -1243,6 +1348,12 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $logic_and (A, B, Y) +//- +//- A logical AND. This corresponds to the Verilog '&&' operator. +//- module \$logic_and (A, B, Y); parameter A_SIGNED = 0; @@ -1267,6 +1378,12 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $logic_or (A, B, Y) +//- +//- A logical OR. This corresponds to the Verilog '||' operator. +//- module \$logic_or (A, B, Y); parameter A_SIGNED = 0; @@ -1306,6 +1423,12 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $concat (A, B, Y) +//- +//- Concatenation of inputs into a single output ( Y = {B, A} ). +//- module \$concat (A, B, Y); parameter A_WIDTH = 0; @@ -1321,6 +1444,12 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $mux (A, B, S, Y) +//- +//- Multiplexer i.e selecting inputs based on select signal. +//- module \$mux (A, B, S, Y); parameter WIDTH = 0; @@ -1396,6 +1525,12 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $demux (A, S, Y) +//- +//- Demultiplexer i.e routing single input to several outputs based on select signal. +//- module \$demux (A, S, Y); parameter WIDTH = 1; @@ -1460,6 +1595,12 @@ endmodule // -------------------------------------------------------- +// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| +//- +//- $tribuf (A, EN, Y) +//- +//- A tri-state buffer. This buffer conditionally passes the input to the output based on the enable signal. +//- module \$tribuf (A, EN, Y); parameter WIDTH = 0; From 34aabd56cca445996d332343b06a29fadd78d534 Mon Sep 17 00:00:00 2001 From: Saish Karole <72208314+NachtSpyder04@users.noreply.github.com> Date: Sun, 18 Aug 2024 20:12:53 +0530 Subject: [PATCH 2/3] Apply suggestions from code review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Martin PoviĊĦer --- techlibs/common/simlib.v | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/techlibs/common/simlib.v b/techlibs/common/simlib.v index de7726582..e035e92c4 100644 --- a/techlibs/common/simlib.v +++ b/techlibs/common/simlib.v @@ -1288,7 +1288,7 @@ endmodule //- //- $pow (A, B, Y) //- -//- Exponentiation of inputs (Y = A ** B). This corresponds to the Verilog '**' operator. +//- Exponentiation of an input (Y = A ** B). This corresponds to the Verilog '**' operator. //- `ifndef SIMLIB_NOPOW @@ -1448,7 +1448,7 @@ endmodule //- //- $mux (A, B, S, Y) //- -//- Multiplexer i.e selecting inputs based on select signal. +//- Multiplexer i.e selecting between two inputs based on select signal. //- module \$mux (A, B, S, Y); @@ -1529,7 +1529,7 @@ endmodule //- //- $demux (A, S, Y) //- -//- Demultiplexer i.e routing single input to several outputs based on select signal. +//- Demultiplexer i.e routing single input to several outputs based on select signal. Unselected outputs are driven to zero. //- module \$demux (A, S, Y); @@ -1599,7 +1599,7 @@ endmodule //- //- $tribuf (A, EN, Y) //- -//- A tri-state buffer. This buffer conditionally passes the input to the output based on the enable signal. +//- A tri-state buffer. This buffer conditionally drives the output with the value of the input based on the enable signal. //- module \$tribuf (A, EN, Y); From aa60255e0e3750207bfcab8b3545f81e1cefa202 Mon Sep 17 00:00:00 2001 From: NachtSpyder04 Date: Sun, 18 Aug 2024 20:27:35 +0530 Subject: [PATCH 3/3] update help messages that went beyond line length limit --- techlibs/common/simlib.v | 52 +++++++++++++++++++++++++++------------- 1 file changed, 35 insertions(+), 17 deletions(-) diff --git a/techlibs/common/simlib.v b/techlibs/common/simlib.v index e035e92c4..5bbad34f6 100644 --- a/techlibs/common/simlib.v +++ b/techlibs/common/simlib.v @@ -435,7 +435,8 @@ endmodule //- //- $sshl (A, B, Y) //- -//- An arithmatic shift-left operation. This corresponds to the Verilog '<<<' operator. +//- An arithmatic shift-left operation. +//- This corresponds to the Verilog '<<<' operator. //- module \$sshl (A, B, Y); @@ -465,7 +466,8 @@ endmodule //- //- $sshr (A, B, Y) //- -//- An arithmatic shift-right operation. This corresponds to the Verilog '>>>' operator. +//- An arithmatic shift-right operation. +//- This corresponds to the Verilog '>>>' operator. //- module \$sshr (A, B, Y); @@ -667,7 +669,8 @@ endmodule //- //- $lt (A, B, Y) //- -//- A less-than comparison between inputs 'A' and 'B'. This corresponds to the Verilog '<' operator. +//- A less-than comparison between inputs 'A' and 'B'. +//- This corresponds to the Verilog '<' operator. //- module \$lt (A, B, Y); @@ -697,7 +700,8 @@ endmodule //- //- $le (A, B, Y) //- -//- A less-than-or-equal-to comparison between inputs 'A' and 'B'. This corresponds to the Verilog '<=' operator. +//- A less-than-or-equal-to comparison between inputs 'A' and 'B'. +//- This corresponds to the Verilog '<=' operator. //- module \$le (A, B, Y); @@ -727,7 +731,8 @@ endmodule //- //- $eq (A, B, Y) //- -//- An equality comparison between inputs 'A' and 'B'. This corresponds to the Verilog '==' operator. +//- An equality comparison between inputs 'A' and 'B'. +//- This corresponds to the Verilog '==' operator. //- module \$eq (A, B, Y); @@ -757,7 +762,8 @@ endmodule //- //- $ne (A, B, Y) //- -//- An inequality comparison between inputs 'A' and 'B'. This corresponds to the Verilog '!=' operator. +//- An inequality comparison between inputs 'A' and 'B'. +//- This corresponds to the Verilog '!=' operator. //- module \$ne (A, B, Y); @@ -787,8 +793,10 @@ endmodule //- //- $eqx (A, B, Y) //- -//- An exact equality comparison between inputs 'A' and 'B'. This corresponds to the Verilog '===' operator. -//- Unlike equality comparison that can give 'x' as output, an exact equality comparison will strictly give '0' or '1' as output. +//- An exact equality comparison between inputs 'A' and 'B'. +//- This corresponds to the Verilog '===' operator. +//- Unlike equality comparison that can give 'x' as output, +//- an exact equality comparison will strictly give '0' or '1' as output. //- module \$eqx (A, B, Y); @@ -818,8 +826,10 @@ endmodule //- //- $nex (A, B, Y) //- -//- An exact inequality comparison between inputs 'A' and 'B'. This corresponds to the Verilog '!==' operator. -//- Unlike inequality comparison that can give 'x' as output, an exact inequality comparison will strictly give '0' or '1' as output. +//- An exact inequality comparison between inputs 'A' and 'B'. +//- This corresponds to the Verilog '!==' operator. +//- Unlike inequality comparison that can give 'x' as output, +//- an exact inequality comparison will strictly give '0' or '1' as output. //- module \$nex (A, B, Y); @@ -849,7 +859,8 @@ endmodule //- //- $ge (A, B, Y) //- -//- A greater-than-or-equal-to comparison between inputs 'A' and 'B'. This corresponds to the Verilog '>=' operator. +//- A greater-than-or-equal-to comparison between inputs 'A' and 'B'. +//- This corresponds to the Verilog '>=' operator. //- module \$ge (A, B, Y); @@ -879,7 +890,8 @@ endmodule //- //- $gt (A, B, Y) //- -//- A greater-than comparison between inputs 'A' and 'B'. This corresponds to the Verilog '>' operator. +//- A greater-than comparison between inputs 'A' and 'B'. +//- This corresponds to the Verilog '>' operator. //- module \$gt (A, B, Y); @@ -939,7 +951,8 @@ endmodule //- //- $sub (A, B, Y) //- -//- Subtraction between inputs 'A' and 'B'. This corresponds to the Verilog '-' operator. +//- Subtraction between inputs 'A' and 'B'. +//- This corresponds to the Verilog '-' operator. //- module \$sub (A, B, Y); @@ -969,7 +982,8 @@ endmodule //- //- $mul (A, B, Y) //- -//- Multiplication of inputs 'A' and 'B'. This corresponds to the Verilog '*' operator. +//- Multiplication of inputs 'A' and 'B'. +//- This corresponds to the Verilog '*' operator. //- module \$mul (A, B, Y); @@ -1288,7 +1302,8 @@ endmodule //- //- $pow (A, B, Y) //- -//- Exponentiation of an input (Y = A ** B). This corresponds to the Verilog '**' operator. +//- Exponentiation of an input (Y = A ** B). +//- This corresponds to the Verilog '**' operator. //- `ifndef SIMLIB_NOPOW @@ -1529,7 +1544,8 @@ endmodule //- //- $demux (A, S, Y) //- -//- Demultiplexer i.e routing single input to several outputs based on select signal. Unselected outputs are driven to zero. +//- Demultiplexer i.e routing single input to several outputs based on select signal. +//- Unselected outputs are driven to zero. //- module \$demux (A, S, Y); @@ -1599,7 +1615,9 @@ endmodule //- //- $tribuf (A, EN, Y) //- -//- A tri-state buffer. This buffer conditionally drives the output with the value of the input based on the enable signal. +//- A tri-state buffer. +//- This buffer conditionally drives the output with the value of the input +//- based on the enable signal. //- module \$tribuf (A, EN, Y);