var fDesc=new Array(); fDesc[0] = "8051 Hex Code Visualizer is a little visualization tool for your Intel 8051 microcontroller's Hex Code. It is simply a parsing tool that will parse the Hex code line by line and show you the complete disassembled view. Once you load your Hex code to this little application, basically there is only one thing you can do, click the 'PARSE' button. The app will show 2 tabs, one is called 'Parsed View' and another is 'Memory Map View'. The Memory Map View will show you the disassembled view, exactly how the code resides in the memory in your microcontroller. The Parsed view will give you another perspective. It will not tell you how the data is arranged along with empty spaces, it will rather tell you what your Hex code means."; 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 = ''; } }