summaryrefslogtreecommitdiffstats
path: root/presentation/ExampleRun/output2/fuzz_1/actual_wrong.v
blob: 31508e21332114818a757370ce145c8c50ac5c4a (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'hx;
   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