/* Copyright (c) 2010 Brian Silverman, Barry Silverman 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 code = [0xa9, 0x00, 0x20, 0x10, 0x00, 0x4c, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x88, 0xe6, 0x40, 0x38, 0x69, 0x02, 0x60]; var cycle = 0; var trace = Array(); var running = false; function go(n){ for(var i=0;i>=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 = transistors[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'; running = true; steps(); } 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 machine3 = ' Sync:' + readBit('sync') ' IRQ:' + readBit('irq') + ' NMI:' + readBit('nmi'); var machine4 = ' IR:' + hexByte(255 - readBits('notir', 8)) + ' idl:' + hexByte(255 - readBits('idl', 8)) + ' alu:' + hexByte(255 - readBits('alu', 8)) + ' TCstate:' + readBit('clock1') + readBit('clock2') + readBit('t2') + readBit('t3') + readBit('t4') + readBit('t5'); var machine5 = ' notRdy0:' + readBit('notRdy0') + ' fetch:' + readBit('fetch') + ' clearIR:' + readBit('clearIR') + ' D1x1:' + readBit('D1x1'); setStatus(machine1 + "
" + machine2); if (loglevel>2) { console.log(machine1 + " " + machine2 + " " + machine3 + " " + machine4 + " " + machine5); } selectCell(ab); } 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)}