var fDesc=new Array();
fDesc[0] = "ICCV7 for CPU12 supports all CPU12 & CPUS12 (HC12 / HCS12) devices.
HCS12X devices can be used as faster replacements for the S12 devices, plus the XGate capable assembler allows you to access this powerful co-processor in the S12X family.
Main Features :
- comprehensive target support
- powerful and user-friendly IDE
- ANSI C compiler
- optimizations
- assembler / linker
- debugger support
- libraries
- documentation
- third party tool support
- technical support
- ICCV7 for CPU12 plus the NoICE-12 debugger bundle is the lowest cost commercial development environment for CPU12 targets.";
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 = '';
}
}