lovanca
Newbie level 6
Hello,
I am currently using ADvance MS to simulate some VHDL-AMS models.
I would like to output some results in an ASCII file. I can do it in the ADvance MS graphical environnement using the Nets window then view>List>Selected nets.
But I would like to be able to do it also in batch mode :
Therefore I wrote a .do file
# Elaboration phase
if [ batch_mode ] {
add log
rder3:dut:*
add list
rder3:dut:*
} else {
view structure
view nets
add wave
rder3:dut:*
}
# Simulation phase
run -all
# End of Simulation
if [ batch_mode ] {
write list output.lst
quit
}
and launch the simulation. Each time I get the same error message :
ADMS> # Error: Internal Error
# Occurred in DUT(CT_IDEAL/ADC_SD_1BIT) at time 0 fs
# #E Error in tcl script file adc_sd_ct.do: No object found matching
rder3:dut:*
But when I use the .do file without the add list command line, It runs and I do not get any trouble.
Any idea on how I could do ?
Lovanca
I am currently using ADvance MS to simulate some VHDL-AMS models.
I would like to output some results in an ASCII file. I can do it in the ADvance MS graphical environnement using the Nets window then view>List>Selected nets.
But I would like to be able to do it also in batch mode :
Therefore I wrote a .do file
# Elaboration phase
if [ batch_mode ] {
add log
add list
} else {
view structure
view nets
add wave
}
# Simulation phase
run -all
# End of Simulation
if [ batch_mode ] {
write list output.lst
quit
}
and launch the simulation. Each time I get the same error message :
ADMS> # Error: Internal Error
# Occurred in DUT(CT_IDEAL/ADC_SD_1BIT) at time 0 fs
# #E Error in tcl script file adc_sd_ct.do: No object found matching
But when I use the .do file without the add list command line, It runs and I do not get any trouble.
Any idea on how I could do ?
Lovanca