var fDesc=new Array(); fDesc[0] = "A cool way to learn and write 8085 assembly language programs. Gone are the days when you punched in the assembly language in hex format and hoped nothing went wrong.

The salient features include.

Write your programs using the syntax highlighting text editor which also gives contextual help in the status bar.
A built in 2 pass assembler and a full source level debugger to simulate/debug your 8085 programs.
View the state of the memory / register / flags.
Modify any memory location / register / instructions."; 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 = ''; } }