All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.pawelkrol.CPU6502.Error.scala Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package com.github.pawelkrol.CPU6502

class Error(message: String) extends RuntimeException(message)

class IllegalOpCodeError(message: String) extends Error(message)

object IllegalOpCodeError {

  def apply(value: ByteVal, core: Core) =
    new IllegalOpCodeError("Illegal opcode $%02x at address $%04x".format(value(), core.register.PC))
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy