User guide
18-74
DirectC Interface
The Verilog code displays the following:
r1 is xxxxxxxx
r2[0] is xxxxxxxx
r2[1] is xxxxxxxx
r3[0] is xxxxxxxx
r3[1] is xxxxxxxx
r1 is 11111111
r2[0] is 0
r2[1] is 0
r3[0] is zzzzzzzz
r3[1] is zzzzzzzz
char *vc_argInfo(vc_handle)
Returns a string containing the information about the argument in the
function call in your Verilog source code. For example if you have the
following Verilog source code:
extern void show(reg [] array []);
module tester;
reg [31:0] mem [7:0];
reg [31:0] mem2 [16:1];
reg [64:1] mem3 [32:1];
initial begin
show(mem);
show(mem2);
show(mem3);
end
endmodule