summaryrefslogtreecommitdiffstats
path: root/presentation/ExampleRun/output2/fuzz_1/actual_correct.v
blob: b82d0ac3244c8ab3af047001e0b0021abbf5df7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module top_1(y, clk, wire1);
   input clk;
   wire [1:0] reg4;
   input wire1;
   output [1:0] y;
   reg reg4_reg[0]  = 1'b0;
   always @(posedge clk)
     reg4_reg[0]  <= wire1;
   assign reg4[0] = reg4_reg[0] ;
   assign reg4[1] = reg4[0];
   assign y = { reg4[0], reg4[0] };
endmodule