Exploring the visualization of 6502 opcodes
Go to file
Mark Canlas d3e3d314bb doc dsl
2020-08-15 14:38:08 -04:00
project fmt 2020-08-15 03:52:11 -04:00
src doc dsl 2020-08-15 14:38:08 -04:00
.gitignore
.scalafix.conf scalafix 2020-08-15 02:04:28 -04:00
.scalafmt.conf fmt 2020-08-15 03:52:11 -04:00
build.sbt scalafix 2020-08-15 02:04:28 -04:00
Jenkinsfile add jenkinsfile 2019-11-30 01:52:25 -05:00
LICENSE
README.md doc; drop three pixel demo 2020-08-15 13:52:05 -04:00

6502-opcodes

Addressing modes

  • Immediate: a value literal
  • ZeroPage: argument is an 8-bit address to the zero page
  • ZeroPageX: argument is an 8-bit address to the zero page, incremented by X without carry
  • ZeroPageY: argument is an 8-bit address to the zero page, incremented by Y without carry
  • Absolute: argument is an 16-bit address
  • AbsoluteX: argument is an 16-bit address, incremented by X with carry
  • AbsoluteY: argument is an 16-bit address, incremented by Y with carry
  • Indirect: argument an address (A); the effective value is an address (B) stored at that address (A); used only by Jump
  • IndirectX: argument is an 8-bit address; find a value at this address incremented by the value X
  • IndirectY: argument is an 8-bit address; find a value at this address; increment the value by Y

TODO

  • assembly doc w/ define support
  • label region as assembly doc
  • postfix operations to accumulator values
  • loops