mirror of https://github.com/YosysHQ/yosys.git
simlib.v: Add x-output tag
Also a few extra cell help texts.
This commit is contained in:
parent
ce6a7fe4fc
commit
4d84d7e69f
|
@ -526,7 +526,13 @@ endgenerate
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
// --------------------------------------------------------
|
// --------------------------------------------------------
|
||||||
|
|
||||||
|
//* ver 2
|
||||||
|
//* title Indexed part-select
|
||||||
//* group binary
|
//* group binary
|
||||||
|
//* tags x-output
|
||||||
|
//- Same as the `$shift` cell, but fills with 'x'.
|
||||||
|
//-
|
||||||
|
|
||||||
module \$shift (A, B, Y);
|
module \$shift (A, B, Y);
|
||||||
|
|
||||||
|
@ -559,7 +565,13 @@ endgenerate
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
// --------------------------------------------------------
|
// --------------------------------------------------------
|
||||||
|
|
||||||
|
//* ver 2
|
||||||
|
//* title Variable shifter
|
||||||
//* group binary
|
//* group binary
|
||||||
|
//- Performs a right logical shift if the second operand is positive (or
|
||||||
|
//- unsigned), and a left logical shift if it is negative.
|
||||||
|
//-
|
||||||
|
|
||||||
module \$shiftx (A, B, Y);
|
module \$shiftx (A, B, Y);
|
||||||
|
|
||||||
|
@ -1204,12 +1216,12 @@ endmodule
|
||||||
|
|
||||||
// --------------------------------------------------------
|
// --------------------------------------------------------
|
||||||
|
|
||||||
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
//* ver 2
|
||||||
//-
|
//* title Divider
|
||||||
//- $div (A, B, Y)
|
|
||||||
//* group binary
|
//* group binary
|
||||||
//-
|
//* tags x-output
|
||||||
//- Division with truncated result (rounded towards 0).
|
//- This corresponds to the Verilog '/' operator, performing division and
|
||||||
|
//- truncating the result (rounding towards 0).
|
||||||
//-
|
//-
|
||||||
module \$div (A, B, Y);
|
module \$div (A, B, Y);
|
||||||
|
|
||||||
|
@ -1235,12 +1247,12 @@ endmodule
|
||||||
|
|
||||||
// --------------------------------------------------------
|
// --------------------------------------------------------
|
||||||
|
|
||||||
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
//* ver 2
|
||||||
//-
|
//* title Modulo
|
||||||
//- $mod (A, B, Y)
|
|
||||||
//* group binary
|
//* group binary
|
||||||
//-
|
//* tags x-output
|
||||||
//- Modulo/remainder of division with truncated result (rounded towards 0).
|
//- This corresponds to the Verilog '%' operator, giving the module (or
|
||||||
|
//- remainder) of division and truncating the result (rounding towards 0).
|
||||||
//-
|
//-
|
||||||
//- Invariant: $div(A, B) * B + $mod(A, B) == A
|
//- Invariant: $div(A, B) * B + $mod(A, B) == A
|
||||||
//-
|
//-
|
||||||
|
@ -1561,6 +1573,7 @@ endmodule
|
||||||
|
|
||||||
// --------------------------------------------------------
|
// --------------------------------------------------------
|
||||||
//* group mux
|
//* group mux
|
||||||
|
//* tags x-output
|
||||||
|
|
||||||
module \$pmux (A, B, S, Y);
|
module \$pmux (A, B, S, Y);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue