Exploring the visualization of 6502 opcodes
Go to file
2020-08-11 23:04:23 -04:00
project sbt-tpolecat 0.1.13 2020-06-30 09:18:14 -04:00
src fix compilation 2020-08-11 22:15:38 -04:00
.gitignore just checking in 2018-05-05 14:23:21 -04:00
.scalafmt.conf upgrade scalafmt 2019-10-28 01:10:59 -04:00
build.sbt scalatest 3.2.1 2020-08-11 15:31:35 -04:00
Jenkinsfile add jenkinsfile 2019-11-30 01:52:25 -05:00
LICENSE Create LICENSE 2018-05-11 18:03:32 -04:00
README.md document 2020-08-11 23:04:23 -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