mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 01:25:33 +00:00
Added $anyseq cell type
This commit is contained in:
parent
2733994aeb
commit
bdc316db50
11 changed files with 40 additions and 11 deletions
|
@ -1334,6 +1334,18 @@ endmodule
|
|||
|
||||
// --------------------------------------------------------
|
||||
|
||||
module \$anyseq (Y);
|
||||
|
||||
parameter WIDTH = 0;
|
||||
|
||||
output [WIDTH-1:0] Y;
|
||||
|
||||
assign Y = 'bx;
|
||||
|
||||
endmodule
|
||||
|
||||
// --------------------------------------------------------
|
||||
|
||||
module \$equiv (A, B, Y);
|
||||
|
||||
input A, B;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue