mirror of
https://github.com/fadden/6502bench.git
synced 2024-12-03 05:49:48 +00:00
bd5b556a7f
Consider: LDA $00 loads a value from address $00 LDA $00,X might load from $00, or might not LDA ($00),Y dereferences $00 as a 16-bit pointer LDA ($00,X) dereferences a pointer, not necessarily from $00 When perusing the cross-reference list, it's useful to be able to tell whether an instruction is accessing the location, using it as a base address, or deferencing it as a pointer. We now show "ptr" in the list for pointer dereferences. (We already showed "idx" for indexed accesses.) |
||
---|---|---|
.. | ||
advanced.html | ||
analysis.html | ||
codegen.html | ||
editors.html | ||
end-notes.html | ||
index.html | ||
intro.html | ||
main.css | ||
mainwin.html | ||
settings.html | ||
tools.html | ||
tutorials.html | ||
visualization.html |