6502Android/app/src/main/kotlin/android/emu6502/instructions/ORA.kt

9 lines
256 B
Kotlin
Raw Normal View History

2015-06-09 17:21:49 +00:00
package android.emu6502.instructions
import java.util.HashMap
/** bitwise OR with Accumulator */
class ORA(instructionList: HashMap<Int, kotlin.reflect.KMemberFunction0<BaseInstruction, Unit>>)
: BaseInstruction(Instruction.ORA, instructionList) {
}