mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-08 12:11:24 +00:00
Added test cases
This commit is contained in:
parent
fb22d7cdc4
commit
271ac28b41
39 changed files with 897 additions and 0 deletions
5
tests/sim/dffe.v
Normal file
5
tests/sim/dffe.v
Normal file
|
@ -0,0 +1,5 @@
|
|||
module dffe( input clk, en, d, output reg q );
|
||||
always @( posedge clk )
|
||||
if ( en )
|
||||
q <= d;
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue