/* 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; 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 // signals may have multi-part names like pla51_T0SBC which should match either part // this is quite difficult to deal with, perhaps indicating that it is not such a good idea var width=0; var r=new RegExp('^' + busname + '[0-9]'); for(var i in nodenamelist){ if(r.test(nodenamelist[i])) { width++; } } if(width==0) return isNodeHigh(nodenames[busname])?"1":"0"; if(width>16) return -1; // 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(){ 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(signalSet(loglevel)); } 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 } function initLogbox(names){ var logbox=document.getElementById('logstream'); if(logbox==null)return; logStream = []; logStream.push("" + names.join("") + ""); logbox.innerHTML = ""+logStream.join("")+""; } function updateLogbox(names){ var logbox=document.getElementById('logstream'); var signals=[]; for(i in names){ signals.push(busToString(names[i])); } logStream.push("" + 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