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

Log slightly more accurately.

This commit is contained in:
Thomas Harte 2021-07-25 19:59:24 -04:00
parent 8d2d4c850f
commit 20da194fab

View File

@ -66,7 +66,7 @@ void Chipset::perform(const CPU::MC68000::Microcycle &cycle) {
} break;
case Read(0x006): {
const uint16_t position = uint16_t((x_ << 8) | (y_ & 0xff));
LOG("Read vertical position low " << PADHEX(4) << position);
LOG("Read position low " << PADHEX(4) << position);
cycle.set_value16(position);
} break;