| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Nes.CPU.Instructions.Access
Synopsis
- lda :: AddressingMode -> CPU r ()
- ldx :: AddressingMode -> CPU r ()
- ldy :: AddressingMode -> CPU r ()
- sta :: AddressingMode -> CPU r ()
- stx :: AddressingMode -> CPU r ()
- sty :: AddressingMode -> CPU r ()
- las :: AddressingMode -> CPU r ()
Load register value
lda :: AddressingMode -> CPU r () Source #
Load Register A
https://www.nesdev.org/obelisk-6502-guide/reference.html#LDA
ldx :: AddressingMode -> CPU r () Source #
Load Register X
https://www.nesdev.org/obelisk-6502-guide/reference.html#LDX
ldy :: AddressingMode -> CPU r () Source #
Load Register Y
https://www.nesdev.org/obelisk-6502-guide/reference.html#LDY
Store register value
sta :: AddressingMode -> CPU r () Source #
Store the value of the A register in memory
https://www.nesdev.org/obelisk-6502-guide/reference.html#STA
stx :: AddressingMode -> CPU r () Source #
Store the value of the X register in memory
https://www.nesdev.org/obelisk-6502-guide/reference.html#STX
sty :: AddressingMode -> CPU r () Source #
Store the value of the Y register in memory
https://www.nesdev.org/obelisk-6502-guide/reference.html#STY
Unofficial
las :: AddressingMode -> CPU r () Source #