mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 14:17:27 +02:00
Added test cases
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
module dlatch( input d, en, output reg q );
|
||||
always @* begin
|
||||
if ( en )
|
||||
q = d;
|
||||
end
|
||||
endmodule
|
||||
Reference in New Issue
Block a user