mirror of https://github.com/zachjs/sv2v.git
11 lines
172 B
Coq
11 lines
172 B
Coq
|
|
module test(a, b, en);
|
||
|
|
output reg a;
|
||
|
|
input wire b;
|
||
|
|
input wire en;
|
||
|
|
always @(*) begin
|
||
|
|
if (en) begin
|
||
|
|
a <= b;
|
||
|
|
end
|
||
|
|
end
|
||
|
|
endmodule
|