From d786f4a594656fe187fa0bf2a31321dbe3c61269 Mon Sep 17 00:00:00 2001 From: tudnai Date: Mon, 27 Apr 2020 12:27:57 -0700 Subject: [PATCH] Fixed bad commit with the io address checking and super slowness --- src/dev/mem/mmio.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/dev/mem/mmio.h b/src/dev/mem/mmio.h index ceb5c6d..8aa07c0 100644 --- a/src/dev/mem/mmio.h +++ b/src/dev/mem/mmio.h @@ -385,8 +385,7 @@ void textPageSelect() { INLINE uint8_t ioRead( uint16_t addr ) { - if (addr != 0xC000) - printf("ioRead:%04X\n", addr); + dbgPrintf("mmio read:%04X\n", addr); uint8_t currentMagnet = 0;