var fDesc=new Array(); fDesc[0] = "Ophis is a cross-assembler for the 65xx series of chips.

It supports the stock 6502 opcodes, the 65c02 extensions, and syntax for the "undocumented opcodes" in the 6510 chip used on the Commodore 64.

Ophis is written in pure Python and should be highly portable.

Ophis is a command-line application, and as such, you will need to edit your environment to put the Ophis install directory into your path."; 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 = ''; } }