Hi,
I found a basic Specman E/Verilog program at http://www.asic-world.com/examples/specman/memory.html and I would like to run it through a vsif file, with vManager.
I'm able to run it, without problems, with this command : xrun -Q -unbuffered '-timescale' '1ns/1ns' '-access' '+rw' memory_tb.v mem_tb_top.e test_write_read_all.e.
I wrote a first vsif which look like this:
---- vm_basic.vsif -----
session vm_basic {
top_dir : /home/cadence/xrunTest/;
output_mode: terminal;
};
group basic {
test test {
run_script: xrun -Q -unbuffered '-timescale' '1ns/1ns' '-access' '+rw' memory_tb.v mem_tb_top.e test_write_read_all.e
};
};
----------------------------
This solution didn't work due to the prompt change with xrun, and I have no clue how to manage this issue.
Have you any idea?
Best regards,
Yohan