1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-21 08:29:06 +00:00

Corrects typo in Cx-page ROM paging.

This commit is contained in:
Thomas Harte 2018-08-04 12:44:58 -04:00
parent 94503ed771
commit e97cc40a2c

View File

@ -200,7 +200,7 @@ template <bool is_iie> class ConcreteMachine:
bool internal_c8_rom_ = false;
void set_card_paging() {
page(0xc1, 0xd8, internal_CX_rom_ ? rom_.data() : nullptr, nullptr);
page(0xc1, 0xc8, internal_CX_rom_ ? rom_.data() : nullptr, nullptr);
if(!internal_CX_rom_) {
if(!slot_C3_rom_) read_pages_[0xc3] = &rom_[0xc300 - 0xc100];