jishnuv33
Newbie
I'm working with some ATE tests .I need to convert the simulation VCD to STIL or SVF format .Anyone have any idea regarding the conversion.Or anyone used Synopsys VTRAN tool.
Please reply.
Please reply.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
how to write command file for the VTRAN tool to understand the tool that event is being converted to cycles.Whether will get any example command file for that.I'm very new to this conversion.To convert a Value Change Dump (VCD) file to STIL (Standard Test Interface Language) or SVF (Serial Vector Format), you can use tools like Synopsys VTRAN.
{ ORIGINAL VECTOR FILE-BLOCK }
ovf_block
begin
ORIG_FILE = "ate.vcd";
SCRIPT_FORMAT VERILOG_VCD;
INPUTS jtag_tms,jtag_tdi;
OUTPUTS jtag_tdo;
end;
{ PROCESSING-BLOCK }
proc_block
begin
DONT_CARE = "X";
DISABLE_VECTOR_FILTER;
STATE_TRANS pure_inputs 'X'->'N', 'x'->'N', 'z'->'Z';
STATE_TRANS bidir_inputs 'X'->'N', 'x'->'N', 'z'->'Z';
STATE_TRANS pure_outputs '1'->'H', '0'->'L', 'x'->'X', 'Z'->'T', 'z'->'T';
STATE_TRANS bidir_outputs '1'->'H', '0'->'L', 'x'->'X', 'Z'->'T', 'z'->'T';
CYCLE = 10;
PINTYPE STB
jtag_tdo
@ 10 ;
PINTYPE NRZ
jtag_tms
jtag_tdi
@ 10 ;
end;
{ TARGET VECTOR FILE-BLOCK }
tvf_block
begin
TARGET_FILE = "test.stil";
TESTER_FORMAT STIL;
end;
end