SOFA/BENCHMARK/io_reg/io_reg.v

23 lines
261 B
Coq
Raw Normal View History

2021-01-07 01:24:34 -06:00
module io_reg(clk, in, out);
input clk;
input in;
output out;
reg out;
//reg temp;
always @(posedge clk)
begin
out <= in;
end
/*always @(posedge clk)
begin
out <= temp ;
end*/
endmodule