mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-27 15:29:34 +00:00
Minor cleanliness improvement.
This commit is contained in:
parent
3b2e97e77c
commit
6e9d517c26
@ -137,12 +137,13 @@ template <typename Machine> class AuxiliaryMemorySwitches {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 0xc008: case 0xc009:
|
case 0xc008: case 0xc009: {
|
||||||
if(!is_read && switches_.alternative_zero_page != bool(address & 1)) {
|
const bool alternative_zero_page = address & 1;
|
||||||
switches_.alternative_zero_page = address & 1;
|
if(!is_read && switches_.alternative_zero_page != alternative_zero_page) {
|
||||||
|
switches_.alternative_zero_page = alternative_zero_page;
|
||||||
set_zero_page_paging();
|
set_zero_page_paging();
|
||||||
}
|
}
|
||||||
break;
|
} break;
|
||||||
|
|
||||||
case 0xc00a: case 0xc00b:
|
case 0xc00a: case 0xc00b:
|
||||||
if(!is_read) {
|
if(!is_read) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user