var fDesc=new Array();
fDesc[0] = ""Pikme" is pronounced to rhyme with "Pygmy". It is desired that as soon as possible Pikme to grow into a full Forth for the Microchip PIC series of microprocessors.
It has two parts:
- PIC chip side: as a one-time action, burn the bootloader (boot.hex) into the PIC chip with a hardware programmer.
- host PC side";
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 = '';
}
}