From 3c36b03c59e72d8eff1ce89262c9334782606b62 Mon Sep 17 00:00:00 2001 From: fahim-oscad Date: Mon, 18 Jul 2016 14:17:42 +0530 Subject: Subject: ADC_BRIDGE reference name is corrected And added rise and fall delay parameter to model line. Description: ADC_BRIDGE reference name is corrected And added rise and fall delay parameter to model line --- views/script/netlist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/script/netlist.js b/views/script/netlist.js index 03bce27..5be53e4 100644 --- a/views/script/netlist.js +++ b/views/script/netlist.js @@ -1267,7 +1267,7 @@ createnetlist:function(responsefunc){ var ih=sections.netlist[i].inhigh; var rised=sections.netlist[i].risedelay; var falld=sections.netlist[i].falldelay; - command+=" adcbridge_"+pid+"\n.model adc_buff_"+pid+" adcbridge(in_low ="+il+" in_high = "+ih+")\n"; + command+=" adc_"+pid+"\n.model adc_"+pid+" adc_bridge(in_low ="+il+" in_high = "+ih+" rise_delay = "+rised+" fall_delay = "+falld+")\n"; } -- cgit