/* Copyright (c) 2010 Brian Silverman, Barry Silverman, Ed Spittles Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ var memory = Array(); var cycle = 0; var trace = Array(); var logstream = Array(); var running = false; var logThese=[]; var presetLogLists=[ ['cycle'], ['ab','db','rw','sync','pc','a','x','y','s','p'], ['ir','tcstate','pd'], ['adl','adh','sb','alu'], ['alucin','alua','alub','alucout','aluvout','dasb'], ['plaOutputs'], ['idb','dor'], ['irq','nmi','res'], ]; function loadProgram(){ // a moderate size of static testprogram might be loaded if(testprogram.length!=0 && testprogramAddress != undefined) for(var i=0;testprogram[i]!=undefined;i++){ var a=testprogramAddress+i; mWrite(a, testprogram[i]); if(a<0x200) setCellValue(a, testprogram[i]); } // a small test program or patch might be passed in the URL if(userCode.length!=0) for(var i=0;i>1; if(busname=='pc') return busToHex('pch') + busToHex('pcl'); if(busname=='p') return readPstring(); if(busname=='tcstate') return ['clock1','clock2','t2','t3','t4','t5'].map(busToHex).join(""); if(busname=='plaOutputs') return listActivePlaOutputs(); return busToHex(busname); } function busToHex(busname){ // may be passed a bus or a signal, so allow multiple signals var width=0; var r=new RegExp('^' + busname + '[0-9]'); for(var i in nodenamelist){ if(r.test(nodenamelist[i])) { width++; } } if(width==0) { // not a bus, so could be a signal, a nodenumber or a mistake if(typeof nodenames[busname] != "undefined") return isNodeHigh(nodenames[busname])?"1":"0"; if((parseInt(busname)!=NaN) && (typeof nodes[busname] != "undefined")) return isNodeHigh(busname)?"1":"0"; return undefined; } if(width>16) return undefined; // finally, convert from logic values to hex return (0x10000+readBits(busname,width)).toString(16).slice(-(width-1)/4-1); } function writeDataBus(x){ var recalcs = Array(); for(var i=0;i<8;i++){ var nn = nodenames['db'+i]; var n = nodes[nn]; if((x%2)==0) {n.pulldown=true; n.pullup=false;} else {n.pulldown=false; n.pullup=true;} recalcs.push(nn); x>>=1; } recalcNodeList(recalcs); } function mRead(a){ if(memory[a]==undefined) return 0; else return memory[a]; } function mWrite(a, d){memory[a]=d;} function clkNodes(){ var res = Array(); res.push(943); for(var i in nodes[943].gates){ var t = nodes[943].gates[i]; if(t.c1==npwr) res.push(t.c2); if(t.c2==npwr) res.push(t.c1); } hiliteNode(res); } function runChip(){ var start = document.getElementById('start'); var stop = document.getElementById('stop'); start.style.visibility = 'hidden'; stop.style.visibility = 'visible'; if(typeof running == "undefined") initChip(); running = true; go(); } function stopChip(){ var start = document.getElementById('start'); var stop = document.getElementById('stop'); start.style.visibility = 'visible'; stop.style.visibility = 'hidden'; running = false; } function resetChip(){ stopChip(); setStatus('resetting 6502...'); setTimeout(initChip,0); } function stepForward(){ if(typeof running == "undefined") initChip(); stopChip(); step(); } function stepBack(){ if(cycle==0) return; showState(trace[--cycle].chip); setMem(trace[cycle].mem); var clk = isNodeHigh(nodenames['clk0']); if(!clk) writeDataBus(mRead(readAddressBus())); chipStatus(); } function chipStatus(){ var ab = readAddressBus(); var machine1 = ' halfcyc:' + cycle + ' phi0:' + readBit('clk0') + ' AB:' + hexWord(ab) + ' D:' + hexByte(readDataBus()) + ' RnW:' + readBit('rw'); var machine2 = ' PC:' + hexWord(readPC()) + ' A:' + hexByte(readA()) + ' X:' + hexByte(readX()) + ' Y:' + hexByte(readY()) + ' SP:' + hexByte(readSP()) + ' ' + readPstring(); var chk=''; if(goldenChecksum != undefined) chk=" Chk:" + traceChecksum + ((traceChecksum==goldenChecksum)?" OK":" no match"); setStatus(machine1, machine2, "Hz: " + estimatedHz().toFixed(1) + chk); if (loglevel>0) { updateLogbox(logThese); } selectCell(ab); } function goFor(){ var n = headlessSteps; estimatedHz1(); while(n--){ halfStep(); cycle++; } estimatedHz1(); chipStatus(); } var prevHzTimeStamp=0; var prevHzCycleCount=0; var prevHzEstimate1=1; var prevHzEstimate2=1; var HzSamplingRate=10; function estimatedHz(){ if(cycle%HzSamplingRate!=3) return prevHzEstimate1; return estimatedHz1(); } function estimatedHz1(){ var HzTimeStamp = now(); var HzEstimate = (cycle-prevHzCycleCount+.01)/(HzTimeStamp-prevHzTimeStamp+.01); HzEstimate=HzEstimate*1000/2; // convert from phases per millisecond to Hz if(HzEstimate<5) HzSamplingRate=5; // quicker if(HzEstimate>10) HzSamplingRate=10; // smoother prevHzEstimate2=prevHzEstimate1; prevHzEstimate1=(HzEstimate+prevHzEstimate1+prevHzEstimate2)/3; // wrong way to average speeds prevHzTimeStamp=HzTimeStamp; prevHzCycleCount=cycle; return prevHzEstimate1 } var logbox; function initLogbox(names){ logbox=document.getElementById('logstream'); if(logbox==null)return; logStream = []; logStream.push("" + names.join("") + ""); logbox.innerHTML = ""+logStream.join("")+""; } var logboxAppend=true; // can append or prepend new states to the log table // when we reverse direction we need to reorder the log stream function updateLogDirection(){ var loglines=[]; logboxAppend=!logboxAppend; // the first element is the header so we can't reverse() for (var i=1;i")+""; } // update the table of signal values, by prepending or appending function updateLogbox(names){ var signals=[]; for(i in names){ signals.push(busToString(names[i])); } if(logboxAppend) logStream.push("" + signals.join("") + ""); else logStream.splice(1,0,"" + signals.join("") + ""); logbox.innerHTML = ""+logStream.join("")+""; } function getMem(){ var res = Array(); for(var i=0;i<0x200;i++) res.push(mRead(i)); return res; } function setMem(arr){ for(var i=0;i<0x200;i++){mWrite(i, arr[i]); setCellValue(i, arr[i]);} } function hexWord(n){return (0x10000+n).toString(16).substring(1)} function hexByte(n){return (0x100+n).toString(16).substring(1)} function adler32(x){ var a=1; var b=0; for(var i=0;i