diff --git a/vice/src/plus4/ted.c b/vice/src/plus4/ted.c index e32bed67bf..e1c2b3bf26 100644 --- a/vice/src/plus4/ted.c +++ b/vice/src/plus4/ted.c @@ -502,10 +502,11 @@ void ted_update_memory_ptrs(unsigned int cycle) screen_addr = ((ted.regs[0x14] & 0xf8) << 8) | 0x400; screen_base = mem_get_tedmem_base((screen_addr >> 14) | cpu_romsel) + (screen_addr & 0x3fff); +#if 0 if (cpu_romsel && (screen_addr < 0x8000)) { screen_base = mem_get_open_space(); } - +#endif TED_DEBUG_REGISTER(("\tVideo memory at $%04X", screen_addr)); bitmap_addr = (ted.regs[0x12] & 0x38) << 10; @@ -530,10 +531,11 @@ void ted_update_memory_ptrs(unsigned int cycle) color_addr = ((ted.regs[0x14] & 0xf8) << 8); color_base = mem_get_tedmem_base((color_addr >> 14) | cpu_romsel) + (color_addr & 0x3fff); +#if 0 if (cpu_romsel && (color_addr < 0x8000)) { color_base = mem_get_open_space(); } - +#endif TED_DEBUG_REGISTER(("\tColor memory at $%04X", color_addr)); tmp = TED_RASTER_CHAR(cycle);