6502Android/app/src/main/kotlin/android/emu6502/CPU.kt

233 lines
5.7 KiB
Kotlin

package android.emu6502
import android.emu6502.instructions.BaseInstruction
import android.emu6502.instructions.Instruction
import android.emu6502.instructions.InstructionTarget
import android.emu6502.instructions.impl.*
import android.util.Log
import java.util.HashMap
import kotlin.reflect.KMemberFunction0
class CPU(private val memory: Memory) {
// Accumulator
var A: Int = 0
// Registers
var X: Int = 0
var Y: Int = 0
// Program counter
var PC: Int = 0x600
// Stack pointer
var SP: Int = 0xFF
// Processor flags
var P: Int = 0
private var isRunning = false
private var debug = false
private var monitoring = false
private var TAG = "CPU"
val instructionList: HashMap<Int, InstructionTarget> = HashMap()
private val operationList: HashMap<Instruction, BaseInstruction> = hashMapOf(
Pair(Instruction.ADC, ADC(this)),
Pair(Instruction.AND, AND(this)),
Pair(Instruction.ASL, ASL(this)),
Pair(Instruction.BIT, BIT(this)),
Pair(Instruction.LDA, LDA(this)),
Pair(Instruction.LDX, LDX(this)),
Pair(Instruction.LDY, LDY(this)),
Pair(Instruction.STA, STA(memory, this)),
Pair(Instruction.STX, STX(this)),
Pair(Instruction.TAX, TAX(this)),
Pair(Instruction.INX, INX(this)),
Pair(Instruction.ORA, ORA(this))
// Pair(Instruction.BPL, BPL(this)),
// Pair(Instruction.BMI, BMI(this)),
// Pair(Instruction.BVC, BVC(this)),
// Pair(Instruction.BVS, BVS(this)),
// Pair(Instruction.BCC, BCC(this)),
// Pair(Instruction.BCS, BCS(this)),
// Pair(Instruction.BNE, BNE(this)),
// Pair(Instruction.BEQ, BEQ(this)),
// Pair(Instruction.BRK, BRK(this)),
// Pair(Instruction.CMP, CMP(this)),
// Pair(Instruction.CPX, CPX(this)),
// Pair(Instruction.CPY, CPY(this)),
// Pair(Instruction.DEC, DEC(this)),
// Pair(Instruction.EOR, EOR(this)),
// Pair(Instruction.CLC, CLC(this)),
// Pair(Instruction.SEC, SEC(this)),
// Pair(Instruction.CLI, CLI(this)),
// Pair(Instruction.SEI, SEI(this)),
// Pair(Instruction.CLV, CLV(this)),
// Pair(Instruction.CLD, CLD(this)),
// Pair(Instruction.SED, SED(this)),
// Pair(Instruction.INC, INC(this)),
// Pair(Instruction.JMP, JMP(this)),
// Pair(Instruction.JSR, JSR(this)),
// Pair(Instruction.LSR, LSR(this)),
// Pair(Instruction.NOP, NOP(this)),
// Pair(Instruction.TXA, TXA(this)),
// Pair(Instruction.DEX, DEX(this)),
// Pair(Instruction.TAY, TAY(this)),
// Pair(Instruction.TYA, TYA(this)),
// Pair(Instruction.DEY, DEY(this)),
// Pair(Instruction.INY, INY(this)),
// Pair(Instruction.ROR, ROR(this)),
// Pair(Instruction.ROL, ROL(this)),
// Pair(Instruction.RTI, RTI(this)),
// Pair(Instruction.RTS, RTS(this)),
// Pair(Instruction.SBC, SBC(this)),
// Pair(Instruction.TXS, TXS(this)),
// Pair(Instruction.TSX, TSX(this)),
// Pair(Instruction.PHA, PHA(this)),
// Pair(Instruction.PLA, PLA(this)),
// Pair(Instruction.PHP, PHP(this)),
// Pair(Instruction.PLP, PLP(this)),
// Pair(Instruction.STY, STY(this))
)
fun execute() {
isRunning = true
while (true) {
setRandomByte()
executeNextInstruction()
if (PC == 0 || !isRunning) {
break
}
}
stop()
Log.i(TAG, "Program end at PC=$" + (PC - 1).toHexString() + ", A=$" + A.toHexString() +
", X=$" + X.toHexString() + ", Y=$" + Y.toHexString())
}
private fun executeNextInstruction() {
val instruction = popByte()
val target = instructionList.get(instruction)
if (target != null) {
val function = target.method
target.operation.function()
} else {
Log.e(TAG, "Address $" + PC.toHexString() + " - unknown opcode " + instruction.toHexString())
stop()
}
}
fun stop() {
isRunning = false
}
fun popByte(): Int {
return memory.get(PC++).and(0xff)
}
private fun setRandomByte() {
memory.set(0xfe, Math.floor(Math.random() * 256).toInt())
}
fun setSZFlagsForRegA() {
setSZFlagsForValue(A)
}
fun setSZflagsForRegX() {
setSZFlagsForValue(X)
}
private fun setSZFlagsForValue(value: Int) {
if (value != 0) {
P = P.and(0xfd)
} else {
P = P.or(0x02)
}
if (value.and(0x80) != 0) {
P = P.or(0x80)
} else {
P = P.and(0x7f)
}
}
fun popWord(): Int {
return popByte() + popByte().shl(8)
}
fun testADC(value: Int) {
var tmp: Int
if (A.xor(value).and(0x80) != 0) {
CLV()
} else {
setOverflow()
}
if (decimalMode().isSet()) {
tmp = A.and(0xf) + value.and(0xf) + carry()
if (tmp >= 10) {
tmp = 0x10.or((tmp + 6).and(0xf))
}
tmp += A.and(0xf0) + value.and(0xf0)
if (tmp >= 160) {
SEC()
if (overflow().isSet() && tmp >= 0x180) {
CLV()
}
tmp += 0x60
} else {
CLC()
if (overflow().isSet() && tmp < 0x80) {
CLV()
}
}
} else {
tmp = A + value + carry()
if (tmp >= 0x100) {
SEC()
if (overflow().isSet() && tmp >= 0x180) {
CLV()
}
} else {
CLC()
if (overflow().isSet() && tmp < 0x80) {
CLV()
}
}
}
A = tmp.and(0xff)
setSZFlagsForRegA()
}
fun overflow(): Int {
return P.and(0x40)
}
fun decimalMode(): Int {
return P.and(8);
}
fun carry(): Int {
return P.and(1);
}
fun negative(): Int {
return P.and(0x80);
}
fun zero(): Int {
return P.and(0x02);
}
/** CLear Carry */
fun CLC() {
P = P.and(0xfe)
}
/** SEt Carry */
fun SEC() {
P = P.or(1)
}
/** CLear oVerflow */
fun CLV() {
P = P.and(0xbf)
}
fun setOverflow() {
P = P.or(0x40)
}
}