1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-12-25 18:30:21 +00:00

Fixes spurious unrecognised miss detection for the ASCII mappers.

This commit is contained in:
Thomas Harte 2018-02-11 20:51:39 -05:00
parent d751b7e2cb
commit 23105956d6
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ class ASCII16kbROMSlotHandler: public ROMSlotHandler {
// printf("A16 %04x ", address);
switch(address >> 11) {
default:
confidence_counter_.add_miss();
if(pc_is_outside_bios) confidence_counter_.add_miss();
break;
case 0xc:
if(pc_is_outside_bios) {

View File

@ -23,7 +23,7 @@ class ASCII8kbROMSlotHandler: public ROMSlotHandler {
// printf("A8 %04x ", address);
switch(address >> 11) {
default:
confidence_counter_.add_miss();
if(pc_is_outside_bios) confidence_counter_.add_miss();
break;
case 0xc:
if(pc_is_outside_bios) {