var fDesc=new Array(); fDesc[0] = "The EDComX tool kit alleviates the time consuming process of creating both Code Models and User-Defined Nodes by automating the creation of standard files used to define Code Models and User-Defined Nodes. It achieves this by employing easy-to-use dialog windows for entering all relevant information. EDComX also includes a special Code Model Preprocessor (CMPP), which similar to the C preprocessor that comes with your C compiler. It takes the standard files as an input describing the new Code Model in terms of physical attributes (including number of ports, type of data it supports, direction etc.) and it’s behavior (a C function(s) that computes the output of the model). EDComX converts them into .C and .CPP files allowing EDSpice to access information about the model at runtime."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }