var fDesc=new Array();
fDesc[0] = "A Structure Basic compiler for the PIC18 series microcontroller. The compiler produces stand alone optimized assembly code ready to be assembled by MPLAB, no runtime libraries or interpreters required.
Features:
- Runtime Error Trapping
- Multitasking
- Short circuit boolean evaluation
- Library support
- String and array support
- Integer variable types include 1,8,16,24, and 32 bit
- Real variable types include 32 bit fixed point and 32 bit floating point";
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 = '';
}
}