fix power on values of cpu port registers

This commit is contained in:
Irmen de Jong 2020-02-18 19:51:05 +01:00
parent 62e2f1663a
commit d5f533c300
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@ class CpuIoPort(val cpu: Cpu6502) : MemMappedComponent(0x0000, 0x0001) {
override fun clock() { }
override fun reset() {
dataDirections = 0xff
ioPort = 0xff
dataDirections = 0xef
ioPort = 0x37
determineRoms()
}