JssimUserHelp
From VisualChips
m (→URL interface) |
(→Graphics help: fleshed out) |
||
Line 45: | Line 45: | ||
==== Graphics help ==== | ==== Graphics help ==== | ||
+ | All the graphics controls are immediately below the chip graphics area. | ||
+ | |||
+ | Use the keyboard to zoom in and out (z and x or < and >) and once you've zoomed in you can use the mouse to pan around, by clicking and dragging. | ||
+ | |||
+ | If you click on any shape in the chip, the status display (top right) will give you the coordinates and the node number, and the node name if it has one. | ||
+ | |||
+ | The second line of graphics controls allow you to select layer visibility. Chips are designed and fabricated as a series of thin layers in and on the silicon. With these controls you can get a clearer idea of the geometry in each layer. For example, most of the long-distance connections are in metal, with some polysilicon. The logic gates themselves use diffusion and polysilicon only, in general. | ||
+ | |||
+ | The next line of graphics controls allow you to find the geometry corresponding to a node name, or number, or a collection of them. The Clear Highlighting button also clears the logic level indication: all the diffusion becomes yellow, all the polysilicon purple, and the metal translucent. | ||
+ | |||
+ | The 'Animate during simulation' checkbox allows you to run the simulation faster, by skipping the logic level highlighting of the chip graphics. | ||
+ | |||
+ | 'Hide Chip Layout' rearranges the page layout so you can concentrate on the right hand side panels - if you're looking at the logical behaviour and not the chip layout. | ||
+ | |||
+ | Finally, 'Link to this location' provides an URL which you can share, corresponding to the current pan and zoom, so you can discuss whichever interesting layout features you find. For example | ||
+ | * [http://visual6502.org/JSSim/expert.html?panx=528.8&pany=182.8&zoom=7.4 instruction predecode] | ||
+ | * [http://visual6502.org/JSSim/expert.html?panx=233.5&pany=387.7&zoom=6.2 lower nibble of the ALU] | ||
+ | * [http://visual6502.org/JSSim/expert.html?panx=486.7&pany=101.5&zoom=6.2 instruction register and part of the PLA] | ||
==== Running the program ==== | ==== Running the program ==== |
Revision as of 14:24, 27 November 2010
The Visual6502 javascript simulator has two entry pages:
- simple mode, also known as kiosk mode, which is the default
- advanced mode
You might also be using a pre-released version of the simulator. As this help is on our wiki, there's only one help page for all versions.
Contents |
Help for simple mode
In simple mode, you see the chip graphics on the left, the control buttons and chip status at top right, and the memory table below that. There's a link to the advanced page, and the overall layout is fixed: there are no draggable bars between the sections.
Graphics help
You can pan and zoom the chip graphics using
- '>' on the keyboard to zoom in
- '<' on the keyboard to zoom out
- click and drag to pan
Click in the graphics area to highlight any shape on the chip: all the connected shapes will be highlighted and the name of the node, if any, will be displayed in the chip status area at top right.
For example, if you click on the square shape at top left of the chip, you'll see text like
node: 1297 nmi
which tells you that this is the NMI pad - in a real chip, it would be connected to the NMI pin of the package with a gold wire.
The node number is useful only as a unique reference number. If you're interested in the workings of the simulator you'll read the source files and see these numbers used to label all the polygons and transistors which are electrically connected and which therefore are at the same voltage - and therefore represent the same logical signal.
Running the program
Towards the top right you see a set of buttons:
- run (or stop) - start the simulation, run for as long as you like, then stop it.
- reset
- back
- forward
As the simulation runs you can see the yellow box in the memory area (bottom right) indicating which memory location is being read or written. You may also see the contents of memory changing: perhaps the location just to the right of {{{0040:}}} will count up.
Modifying the program
You can't presently modify the program in the simple page: you need the Advanced page for that.
Help for advanced mode
In advanced mode, there's an additional area at bottom right which can tabulate the state of the machine, and any signals of interest, phase by phase or instruction by instruction. There's also a console for programs which perform I/O: it's possible to interact with a BASIC interpreter for example.
The layout in advanced mode has a couple of draggable boundaries so you can adjust according to what you're doing.
The chip graphics area has some additional controls, and can be hidden altogether.
Finally, in expert mode you can control the simulator and the graphics using additional URL parameters.
Graphics help
All the graphics controls are immediately below the chip graphics area.
Use the keyboard to zoom in and out (z and x or < and >) and once you've zoomed in you can use the mouse to pan around, by clicking and dragging.
If you click on any shape in the chip, the status display (top right) will give you the coordinates and the node number, and the node name if it has one.
The second line of graphics controls allow you to select layer visibility. Chips are designed and fabricated as a series of thin layers in and on the silicon. With these controls you can get a clearer idea of the geometry in each layer. For example, most of the long-distance connections are in metal, with some polysilicon. The logic gates themselves use diffusion and polysilicon only, in general.
The next line of graphics controls allow you to find the geometry corresponding to a node name, or number, or a collection of them. The Clear Highlighting button also clears the logic level indication: all the diffusion becomes yellow, all the polysilicon purple, and the metal translucent.
The 'Animate during simulation' checkbox allows you to run the simulation faster, by skipping the logic level highlighting of the chip graphics.
'Hide Chip Layout' rearranges the page layout so you can concentrate on the right hand side panels - if you're looking at the logical behaviour and not the chip layout.
Finally, 'Link to this location' provides an URL which you can share, corresponding to the current pan and zoom, so you can discuss whichever interesting layout features you find. For example
Running the program
Modifying the program
Tracing machine state
Busses and signals of interest
URL interface
There's a variety of parameters which can be passed on the URL, to make it easy to share examples and discoveries as direct links into the simulator. In all cases these are passed like this:
http://www.visual6502.org/JSSim?name1=value1&name2=value2
- positioning the graphics window
- panx=240&pany=350&zoom=10
- select a larger canvas for improved graphical detail (uses more RAM)
- canvas=2000
- suppress the simulation, for faster startup of a purely graphical session
- nosim=true
- suppressing graphics (same as the Hide Chip Layout button)
- graphics=false
- running for a fixed number of clock phases
- steps=10
- see more groups of interesting signals in the tabulation
- loglevel=4
- add specific signals to the tabulation
- logmore=Execute,State,plaOutputs
- set the fastforward step count (for benchmarking, or interactive programs)
- headlesssteps=250
- load a test program, or patch memory contents
- a=0000&d=a2d0de2143
- adjust the reset vector
- r=0002
- set up some input pin transitions (reset, IRQ, NMI)
- reset0=12&reset1=13
- nmi0=4&nmi1=8
- irq0=3&irq1=20
- check every signal value against a golden checksum (for checking simulator code changes)
- steps=99&checksum=0fa98aab
The final reference on the URL capabilities is the source code.