mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-23 03:32:32 +00:00
Fixed setting of the second 1kb.
This commit is contained in:
parent
a72d70e707
commit
f0d944847b
@ -217,7 +217,7 @@ unsigned int Machine::perform_bus_operation(CPU6502::BusOperation operation, uin
|
||||
{
|
||||
int selected_page = (*value) % (rom_size_ / 2048);
|
||||
rom_pages_[0] = &rom_[selected_page * 2048];
|
||||
rom_pages_[1] = rom_pages_[0] + 2048;
|
||||
rom_pages_[1] = rom_pages_[0] + 1024;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user