mirror of
https://github.com/irmen/ksim65.git
synced 2025-01-29 05:30:00 +00:00
exclude c64 specific tests because of roms requirement
This commit is contained in:
parent
ec9b80433f
commit
95733df9af
@ -10,6 +10,7 @@ import razorvine.ksim65.components.Rom
|
|||||||
import kotlin.test.*
|
import kotlin.test.*
|
||||||
|
|
||||||
@Execution(ExecutionMode.CONCURRENT)
|
@Execution(ExecutionMode.CONCURRENT)
|
||||||
|
@Disabled("requires the C-64 roms to be available - we don't ship them with this code")
|
||||||
class Test6502TestSuiteC64Specific {
|
class Test6502TestSuiteC64Specific {
|
||||||
|
|
||||||
val cpu: Cpu6502 = Cpu6502()
|
val cpu: Cpu6502 = Cpu6502()
|
||||||
@ -19,7 +20,7 @@ class Test6502TestSuiteC64Specific {
|
|||||||
val kernalStubs = C64KernalStubs(ram)
|
val kernalStubs = C64KernalStubs(ram)
|
||||||
|
|
||||||
init {
|
init {
|
||||||
val romsPath = determineRomPath()
|
val romsPath = determineRomPath() // this requires you to have the c64 roms somewhere available
|
||||||
val chargenRom = Rom(0xd000, 0xdfff).also {
|
val chargenRom = Rom(0xd000, 0xdfff).also {
|
||||||
val chargenData = romsPath.resolve("chargen").toFile().readBytes()
|
val chargenData = romsPath.resolve("chargen").toFile().readBytes()
|
||||||
it.load(chargenData)
|
it.load(chargenData)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user