funes-0.1.0.0
Safe HaskellNone
LanguageHaskell2010

Nes.CPU.Instructions.Unofficial

Description

Unofficial instructions that are combinations of official ones

Synopsis

Documentation

lax :: AddressingMode -> CPU r () Source #

Equivalent to LDA then TAX, saves a couple of cycles

sax :: AddressingMode -> CPU r () Source #

Stores the bitwise AND of A and X. No flags are affected

dcp :: AddressingMode -> CPU r () Source #

Equivalent to DEC value then CMP value, except supporting more addressing modes

rra :: AddressingMode -> CPU r () Source #

(Unofficial) ROR and ADC