mirror of
https://github.com/irmen/ksim65.git
synced 2025-04-05 07:37:30 +00:00
fix unit test
This commit is contained in:
parent
43b2bec5da
commit
8b84a7c653
@ -52,7 +52,7 @@ class Test6502CpuBasics {
|
||||
val ram = Ram(0x1000, 0x1fff)
|
||||
// load a simple program that loops a few instructions
|
||||
for(b in listOf(0xa9, 0x63, 0xaa, 0x86, 0x22, 0x8e, 0x22, 0x22, 0x91, 0x22, 0x6d, 0x33, 0x33, 0xcd, 0x55, 0x55, 0xd0, 0xee, 0xf0, 0xec).withIndex()) {
|
||||
ram[0x1000+b.index] = b.value.toShort()
|
||||
ram[b.index] = b.value.toShort()
|
||||
}
|
||||
|
||||
val bus = Bus()
|
||||
|
Loading…
x
Reference in New Issue
Block a user