mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-25 04:26:01 +00:00
Added test cases
This commit is contained in:
parent
fb22d7cdc4
commit
271ac28b41
39 changed files with 897 additions and 0 deletions
8
tests/sim/adlatch.v
Normal file
8
tests/sim/adlatch.v
Normal file
|
@ -0,0 +1,8 @@
|
|||
module adlatch( input d, rst, en, output reg q );
|
||||
always @* begin
|
||||
if (rst)
|
||||
q = 0;
|
||||
else if (en)
|
||||
q = d;
|
||||
end
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue