Question.1
What is the final simulation value of the global variable count?
count
reg [3:0] count = 0; task step_up(input [3:0] val); count = count + val; endtask initial begin step_up(4'd3); step_up(4'd2); end
Select Answer
0
10
5
x