corbu
Newbie level 2
Hello. I'm trying to Simulate this program but i get this error "Error: (vsim-3036) Instantiation depth of '/circuit_c_tb is 75. Assuming recursive instantiation." and "Warning: (vsim-3035) Instantiation depth of '/circuit_c_tb is 51. This might indicate a recursive instantiation. Increasing limit to 75."
Can anyone help me? Thanks
my Design
Can anyone help me? Thanks
my Design
Code Verilog - [expand] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 module circuit_c ( input [2:0]a, input [2:0]b, output [3:0]out1, input [2:0]c, output [5:0]out2 ); assign out1={a,b}; assign out2={3{c}}; endmodule my Test-bench module circuit_c_tb; reg [2:0]a_tb; reg [2:0]b_tb; wire [3:0]out1_tb; reg [2:0]c_tb; wire [5:0]out2_tb; initial begin $monitor("@%0d, a=%b, b=%b, c=%b, out1=%b, out2=%b", $time, a_tb, b_tb, c_tb, out1_tb, out2_tb); end circuit_c_tb myCircuitC( .a(a_tb), .b(b_tb), .c(c_tb), .out1(out1_tb), .out2(out2_tb) ); initial begin a_tb = 2'b01; b_tb = 2'b01; c_tb = 2'b01; #1 b_tb = 2'b11; #1 a_tb = 2'b11; #1 c_tb = 2'b10; a_tb = 2'b00; #1; end endmodule
Last edited by a moderator: