mirror of
https://github.com/trebonian/visual6502.git
synced 2025-07-15 13:24:23 +00:00
Compare commits
19 Commits
svg
...
production
Author | SHA1 | Date | |
---|---|---|---|
|
7056873887 | ||
|
f736b092de | ||
|
1cb58a1cab | ||
|
1f78e25b3a | ||
|
4364604b96 | ||
|
7ddbbe7de6 | ||
|
d5f0604427 | ||
|
2147762ee4 | ||
|
651d8a44c5 | ||
|
51d6bb216b | ||
|
3b7fbe4385 | ||
|
f3cffeeed6 | ||
|
a2a4bc65c5 | ||
|
815e972d14 | ||
|
9f4f922e16 | ||
|
27bec1bfe5 | ||
|
976fe7e430 | ||
|
72ac2caf74 | ||
|
df33b88c56 |
2
README
2
README
@@ -4,7 +4,7 @@ www.visual6502.org/JSSim
|
|||||||
It includes a general purpose transistor-level simulator, layout browser,
|
It includes a general purpose transistor-level simulator, layout browser,
|
||||||
and the data from a 6502 revD chip.
|
and the data from a 6502 revD chip.
|
||||||
|
|
||||||
Recently added: polygon data for the 6800 chip. The simulation is not yet working,
|
It also includes a similar simulator for the 6800 chip.
|
||||||
|
|
||||||
Note the various licenses and Copyright associated with each file.
|
Note the various licenses and Copyright associated with each file.
|
||||||
|
|
||||||
|
@@ -4,20 +4,26 @@ testprogramAddress=0x0000;
|
|||||||
// we want to auto-clear the console if any output is sent by the program
|
// we want to auto-clear the console if any output is sent by the program
|
||||||
var consoleboxStream="";
|
var consoleboxStream="";
|
||||||
|
|
||||||
// for opcodes, see ftp://ftp.comlab.ox.ac.uk/pub/Cards/txt/6800.txt
|
// demonstrate write hook
|
||||||
|
writeTriggers[0x8000]="consoleboxStream += String.fromCharCode(d);"+
|
||||||
|
"consolebox.innerHTML = consoleboxStream;";
|
||||||
|
|
||||||
|
// demonstrate read hook (not used by this test program)
|
||||||
|
readTriggers[0x8004]="((consolegetc==undefined)?0:0xff)"; // return zero until we have a char
|
||||||
|
readTriggers[0x8000]="var c=consolegetc; consolegetc=undefined; (c)";
|
||||||
|
|
||||||
|
// for opcodes, see http://www.textfiles.com/programming/CARDS/6800
|
||||||
|
|
||||||
testprogram = [
|
testprogram = [
|
||||||
0xce, 0x43, 0x21, // LDX #4321
|
0xce, 0x43, 0x21, // LDX #4321
|
||||||
0x35, // TXS
|
0x35, // TXS
|
||||||
0xc6, 0xfb, // LDAB #$FB
|
0xce, 0x80, 0x00, // LDX #8000
|
||||||
|
0xc6, 0x40, // LDAB #$40
|
||||||
0xbd, 0x00, 0x10, // JSR $0010
|
0xbd, 0x00, 0x10, // JSR $0010
|
||||||
0x7e, 0x00, 0x04, // JMP $0004
|
0x7e, 0x00, 0x09, // JMP $0009
|
||||||
0x01, // NOP
|
0x01, // NOP
|
||||||
0x01, // NOP
|
|
||||||
0x01, // NOP
|
|
||||||
0x01, // NOP
|
|
||||||
0x08, // INX
|
|
||||||
0x4a, // DECA
|
0x4a, // DECA
|
||||||
|
0xe7, 0x00, // STAB 0, X
|
||||||
0x7c, 0x00, 0x0f, // INC $0F
|
0x7c, 0x00, 0x0f, // INC $0F
|
||||||
0x0d, // SEC
|
0x0d, // SEC
|
||||||
0xc9, 0x02, // ADCB #$02
|
0xc9, 0x02, // ADCB #$02
|
||||||
|
10
chipsim.js
10
chipsim.js
@@ -143,7 +143,15 @@ function saveString(name, str){
|
|||||||
|
|
||||||
function allNodes(){
|
function allNodes(){
|
||||||
var res = new Array();
|
var res = new Array();
|
||||||
for(var i in nodes) if((i!=npwr)&&(i!=ngnd)) res.push(i);
|
var ii = 0;
|
||||||
|
for(var i in nodes) {
|
||||||
|
// Don't feed numeric strings to recalcNodeList(). Numeric
|
||||||
|
// strings can cause a (data dependent) duplicate node number
|
||||||
|
// hiccup when accumulating a node group's list, ie:
|
||||||
|
// group => [ "49", 483, 49 ]
|
||||||
|
ii = Number( i );
|
||||||
|
if((ii!=npwr)&&(ii!=ngnd)) res.push(ii);
|
||||||
|
}
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -57,7 +57,7 @@ $().ready(function(){
|
|||||||
<a href="http://blog.visual6502.org">Blog</a>
|
<a href="http://blog.visual6502.org">Blog</a>
|
||||||
<a href="http://www.visual6502.org/links.html">Links</a>
|
<a href="http://www.visual6502.org/links.html">Links</a>
|
||||||
<a href="http://github.com/trebonian/visual6502">Source</a>
|
<a href="http://github.com/trebonian/visual6502">Source</a>
|
||||||
<a href="ftp://ftp.comlab.ox.ac.uk/pub/Cards/txt/6800.txt">6800 instruction card</a>
|
<a href="http://www.textfiles.com/programming/CARDS/6800">6800 instruction card</a>
|
||||||
<a href="http://www.sbprojects.com/sbasm/6800.htm#model">programming model</a>
|
<a href="http://www.sbprojects.com/sbasm/6800.htm#model">programming model</a>
|
||||||
</span>
|
</span>
|
||||||
<div class="frame" id="frame">
|
<div class="frame" id="frame">
|
||||||
|
@@ -13569,7 +13569,15 @@ function saveString(name, str){
|
|||||||
|
|
||||||
function allNodes(){
|
function allNodes(){
|
||||||
var res = new Array();
|
var res = new Array();
|
||||||
for(var i in nodes) if((i!=npwr)&&(i!=ngnd)) res.push(i);
|
var ii = 0;
|
||||||
|
for(var i in nodes) {
|
||||||
|
// Don't feed numeric strings to recalcNodeList(). Numeric
|
||||||
|
// strings can cause a (data dependent) duplicate node number
|
||||||
|
// hiccup when accumulating a node group's list, ie:
|
||||||
|
// group => [ "49", 483, 49 ]
|
||||||
|
ii = Number( i );
|
||||||
|
if((ii!=npwr)&&(ii!=ngnd)) res.push(ii);
|
||||||
|
}
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -14407,7 +14415,7 @@ var dis6502={
|
|||||||
0x68:"PLA",
|
0x68:"PLA",
|
||||||
0x69:"ADC #",
|
0x69:"ADC #",
|
||||||
0x6A:"ROR ",
|
0x6A:"ROR ",
|
||||||
0x6C:"JMP zp",
|
0x6C:"JMP (Abs)",
|
||||||
0x6D:"ADC Abs",
|
0x6D:"ADC Abs",
|
||||||
0x6E:"ROR Abs",
|
0x6E:"ROR Abs",
|
||||||
0x70:"BVS ",
|
0x70:"BVS ",
|
||||||
|
14
expert.html
14
expert.html
@@ -78,19 +78,19 @@ $().ready(function(){
|
|||||||
<div id="layoutControlPanel">
|
<div id="layoutControlPanel">
|
||||||
Use 'z' or '>' to zoom in, 'x' or '<' to zoom out, click to probe signals and drag to pan.
|
Use 'z' or '>' to zoom in, 'x' or '<' to zoom out, click to probe signals and drag to pan.
|
||||||
<form id="updateShow"> Show:
|
<form id="updateShow"> Show:
|
||||||
<input type="checkbox" name="1" id="updateShow1" onchange="updateShow(this.name,this.checked)" />(diffusion)
|
<input type="checkbox" name="1" id="updateShow1" onchange="updateShow(this.name,this.checked)" /><label for="updateShow1">(diffusion)</label>
|
||||||
<input type="checkbox" name="3" id="updateShow3" onchange="updateShow(this.name,this.checked)" />(grounded diffusion)
|
<input type="checkbox" name="3" id="updateShow3" onchange="updateShow(this.name,this.checked)" /><label for="updateShow3">(grounded diffusion)</label>
|
||||||
<input type="checkbox" name="4" id="updateShow4" onchange="updateShow(this.name,this.checked)" />(powered diffusion)
|
<input type="checkbox" name="4" id="updateShow4" onchange="updateShow(this.name,this.checked)" /><label for="updateShow4">(powered diffusion)</label>
|
||||||
<input type="checkbox" name="5" id="updateShow5" onchange="updateShow(this.name,this.checked)" />(polysilicon)
|
<input type="checkbox" name="5" id="updateShow5" onchange="updateShow(this.name,this.checked)" /><label for="updateShow5">(polysilicon)</label>
|
||||||
<input type="checkbox" name="0" id="updateShow0" onchange="updateShow(this.name,this.checked)" />(metal)
|
<input type="checkbox" name="0" id="updateShow0" onchange="updateShow(this.name,this.checked)" /><label for="updateShow0">(metal)</label>
|
||||||
<input type="checkbox" name="2" id="updateShow2" onchange="updateShow(this.name,this.checked)" />(protection)
|
<input type="checkbox" name="2" id="updateShow2" onchange="updateShow(this.name,this.checked)" /><label for="updateShow2">(protection)</label>
|
||||||
</form>
|
</form>
|
||||||
<form action="javascript:hiliteNodeList();">
|
<form action="javascript:hiliteNodeList();">
|
||||||
<input type="button" value="Find:" onclick="hiliteNodeList();" />
|
<input type="button" value="Find:" onclick="hiliteNodeList();" />
|
||||||
<input type="text" id="HighlightThese" name="HighlightThese" value="" />
|
<input type="text" id="HighlightThese" name="HighlightThese" value="" />
|
||||||
<input type="button" value="Clear Highlighting" onclick="clearHighlight();" />
|
<input type="button" value="Clear Highlighting" onclick="clearHighlight();" />
|
||||||
<span class="animatebox">
|
<span class="animatebox">
|
||||||
Animate during simulation:
|
<label for="animateModeCheckbox">Animate during simulation:</label>
|
||||||
<input type="checkbox" id="animateModeCheckbox" onchange="updateChipLayoutAnimation(this.checked)"
|
<input type="checkbox" id="animateModeCheckbox" onchange="updateChipLayoutAnimation(this.checked)"
|
||||||
/></span>
|
/></span>
|
||||||
</form>
|
</form>
|
||||||
|
@@ -699,7 +699,7 @@ var disassembly={
|
|||||||
0x68:"PLA",
|
0x68:"PLA",
|
||||||
0x69:"ADC #",
|
0x69:"ADC #",
|
||||||
0x6A:"ROR ",
|
0x6A:"ROR ",
|
||||||
0x6C:"JMP zp",
|
0x6C:"JMP (Abs)",
|
||||||
0x6D:"ADC Abs",
|
0x6D:"ADC Abs",
|
||||||
0x6E:"ROR Abs",
|
0x6E:"ROR Abs",
|
||||||
0x70:"BVS ",
|
0x70:"BVS ",
|
||||||
|
@@ -923,7 +923,7 @@ dpc31_PCHPCH: 741, // load pch from pch incremented
|
|||||||
dpc32_PCHADH: 1235, // drive adh from pch incremented
|
dpc32_PCHADH: 1235, // drive adh from pch incremented
|
||||||
dpc33_PCHDB: 247, // drive idb from pch incremented
|
dpc33_PCHDB: 247, // drive idb from pch incremented
|
||||||
dpc34_PCLC: 1704, // pch carry in and pcl FF detect?
|
dpc34_PCLC: 1704, // pch carry in and pcl FF detect?
|
||||||
dpc35_PCHC: 1334, // pcl 0x?F detect - half-carry
|
dpc35_PCHC: 1334, // pch 0x?F detect - half-carry
|
||||||
"dpc36_#IPC": 379, // pcl carry in (inverted)
|
"dpc36_#IPC": 379, // pcl carry in (inverted)
|
||||||
"dpc36_~IPC": 379, // automatic alias replacing hash with tilde
|
"dpc36_~IPC": 379, // automatic alias replacing hash with tilde
|
||||||
dpc37_PCLDB: 283, // drive idb from pcl incremented
|
dpc37_PCLDB: 283, // drive idb from pcl incremented
|
||||||
|
Reference in New Issue
Block a user