1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-04 18:29:40 +00:00

Further increases logging.

This commit is contained in:
Thomas Harte 2021-08-05 20:07:14 -04:00
parent 25e2bd307a
commit db3c158215

View File

@ -454,6 +454,7 @@ void Chipset::perform(const CPU::MC68000::Microcycle &cycle) {
break;
case Read(0x01c):
cycle.set_value16(interrupt_enable_);
LOG("Interrupt enable mask read: " << PADHEX(4) << interrupt_enable_);
break;
case Write(0x09c):
@ -463,6 +464,7 @@ void Chipset::perform(const CPU::MC68000::Microcycle &cycle) {
break;
case Read(0x01e):
cycle.set_value16(interrupt_requests_);
LOG("Interrupt requests read: " << PADHEX(4) << interrupt_requests_);
break;
// Display management.
@ -647,7 +649,7 @@ void Chipset::perform(const CPU::MC68000::Microcycle &cycle) {
// MARK: - Sprites.
void Chipset::Sprite::set_pointer(int shift, uint16_t value) {
LOG("Sprite pointer with shift " << shift << " to " << PADHEX(4) << value);
LOG("Sprite pointer with shift " << std::dec << shift << " to " << PADHEX(4) << value);
}
void Chipset::Sprite::set_start_position(uint16_t value) {