mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-09 20:50:51 +00:00
Test fixes for latest iverilog
This commit is contained in:
parent
a217450524
commit
1ecf6aee9b
3 changed files with 14 additions and 5 deletions
|
@ -68,9 +68,8 @@ end
|
|||
assign dout = combout_rt & 1'b1;
|
||||
endmodule
|
||||
|
||||
module DFF (output q,
|
||||
module DFF (output reg q,
|
||||
input d, ck);
|
||||
reg q;
|
||||
always @(posedge ck)
|
||||
q <= d;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue