var fDesc=new Array();
fDesc[1] = "These functions are available in a user friendly graphical interface. The program helps the user to view the internal microcontroller architecture. It has features such as FLASH program memory editor, variable simulation rate and a powerful PIC basic compiler.";
fDesc[2] = "notepad and don’t have high costly developer software. Presently Programmer’s Notepad supports for Ada, Assembler, Bash, Batch file, C, C++, c#, CSS, D, Diff, Docbook XML, Fortran 77, Fortran 95, HTML, IDL, Java, Javascript, LaTeX, Lua, Make, Matlab, Modula-2, etc.";
fDesc[3] = "microEngineering labs PICBASIC and PICBASIC PRO compiler. The application features an editor which supports full syntax highlighting of the code. It also supports context sensitive keyword help and syntax hints.";
fDesc[4] = "includes some tutorials for beginners. Emu8086 runs programs like a real 8086 microprocessor in step-by-step mode, showing registers, memory, stack, variables and flags. The instructions can be executed in forward or reverse direction.";
fDesc[5] = "micro Engineering labs PICBASIC and PICBASIC PRO compiler. The application has an editor with full syntax highlighting of the code. It also features context sensitive keyword help and syntax hints.";
fDesc[6] = "compiler, assembler, disassembler and debugger. This application has features like a simulation interface which shows the whole processor structure along with its interrupts interface in a graphical form. It has an in-built memory editor for64K external memory.";
fDesc[7] = "assembler, disassembler and debugger. The application features a PIC18 basic compiler which is bundled with a smart basic source editor. The memory editor tool is available for FLASH memory and EPROM data memory.";
fDesc[8] = ", assembler, disassembler and debugger. Z80 Simulator IDE has extensive program options and consists of a memory editor for 64k memory. It also features a conversion tool for IEEE 754 single precision floating point numbers format.";
fDesc[9] = "90S family which are bundled with emulator, assembler, disassembler, Basic compiler, and debugger. The application features a smart AVR basic compiler which is bundled with a smart basic source editor. The memory editor tool is available for FLASH memory and EPROM data memory.";
fDesc[10] = "test ... if you blink, you're dead.";
fDesc[11] = "supports one-player mode, the online contest, and playing against the computer. Various skins are included.";
fDesc[12] = ", etc. The program is very simple to use and is a good one for those beginning to do 16-bit microcontroller programming. It has all the features to edit and run an assembly language program.";
fDesc[13] = "interface I/O or Windows API; Serial port for communication and the type of data; addresses and the program code for the device; select different devices; read, erase verify, and send program code. The view can be assembler or hexadecimal (assembler view is only supported for 14/12 bit PIC).";
fDesc[15] = "visual supports through every step of the creative process.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}