package android.emu6502.instructions import java.util.HashMap /** bitwise OR with Accumulator */ class ORA(instructionList: HashMap>) : BaseInstruction(Instruction.ORA, instructionList) { }