mirror of https://github.com/YosysHQ/yosys.git
Add test case from #997
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
33738c1745
commit
b7ec698d40
|
@ -40,3 +40,15 @@ module dff1a_test(n1, n1_inv, clk);
|
|||
n1 <= n1_inv;
|
||||
assign n1_inv = ~n1;
|
||||
endmodule
|
||||
|
||||
module dff_test_997 (y, clk, wire4);
|
||||
// https://github.com/YosysHQ/yosys/issues/997
|
||||
output wire [1:0] y;
|
||||
input clk;
|
||||
input signed wire4;
|
||||
reg [1:0] reg10 = 0;
|
||||
always @(posedge clk) begin
|
||||
reg10 <= wire4;
|
||||
end
|
||||
assign y = reg10;
|
||||
endmodule
|
||||
|
|
Loading…
Reference in New Issue