1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Switched display update and RAM write order.

This commit is contained in:
Thomas Harte 2016-01-11 22:29:16 -05:00
parent 650077feac
commit cba09b5490

View File

@ -46,12 +46,11 @@ unsigned int Machine::perform_bus_operation(CPU6502::BusOperation operation, uin
}
else
{
_ram[address] = *value;
// TODO: range check on address; a lot of the time the machine will be running code outside of
// the screen area, meaning that no update is required.
// if (address
// TODO: range check on address; a lot of the time the machine will be running code outside of
// the screen area, meaning that no update is required.
update_display();
_ram[address] = *value;
}
// TODO: RAM timing for Modes 03