From 470080015db3010892b49943f984451cbf332c1a Mon Sep 17 00:00:00 2001 From: Barry Silverman Date: Sat, 18 Sep 2010 19:59:41 -0400 Subject: [PATCH] Change title font and various wording changes from Greg --- README | 10 ++++++---- index.html | 17 +++++++++++------ wires.css | 8 +++++++- wires.js | 3 ++- 4 files changed, 26 insertions(+), 12 deletions(-) diff --git a/README b/README index 1801cee..8c4ff9f 100644 --- a/README +++ b/README @@ -1,8 +1,10 @@ -This is the javascript simulator from the visual5602.org project. +This is the javascript simulator from the visual5602.org project: +www.visual6502.org/JSSim -It includes a general purpose switch-level simulator, layout browser, -and data from a 6502D chip. +It includes a general purpose transistor-level simulator, layout browser, +and the data from a 6502 revD chip. -Please note the various licenses of the different files. +Note the various licenses and Copyright associated with each file. Enjoy! +- The Visual 6502 Team diff --git a/index.html b/index.html index 55a7445..2c305c0 100644 --- a/index.html +++ b/index.html @@ -1,7 +1,7 @@ -Visual 6502 +Visual 6502 in JavaScript @@ -14,8 +14,13 @@
-The Visual 6502

+The Visual 6502 +
+FAQ  +Blog  +Links  +

If the chip does not load, try another browser: Chrome, Safari, or Firefox

@@ -50,11 +55,11 @@ Enter your own program into the array of RAM
Show: (metal) - (diff) + (switched diffusion) + (grounded diffusion) + (powered diffusion) + (polysilicon) (diode) - (diff0) - (diff1) - (poly)


diff --git a/wires.css b/wires.css index abbc6f3..185b6df 100644 --- a/wires.css +++ b/wires.css @@ -23,7 +23,8 @@ body { background: white; color: black; - font-family: cursive; +/* font-family: cursive;*/ + font-family :Verdana, Arial, Helvetica, Sans-Serif; font-size: 12px; } @@ -86,3 +87,8 @@ table.memtable { font-size: 12px; border-spacing: 0px; } + +#title { +font-size:30px; +font-weight:bold; +} \ No newline at end of file diff --git a/wires.js b/wires.js index 7f1b9d2..f5b8a28 100644 --- a/wires.js +++ b/wires.js @@ -26,7 +26,8 @@ var zoom=1; var dragMouseX, dragMouseY, moved; var statbox; -var layernames = ['metal', 'diff', 'inputdiode', 'diff0', 'diff1', 'poly']; +// Index of layerNames corresponds to index into drawLayers +var layernames = ['metal', 'switched diffusion', 'inputdiode', 'grounded diffusion', 'powered diffusion', 'polysilicon']; var colors = ['rgba(128,128,192,0.4)','#FFFF00','#FF00FF','#4DFF4D', '#FF4D4D','#801AC0','rgba(128,0,255,0.75)']; var drawlayers = [true, true, true, true, true, true];