mirror of
https://github.com/TomHarte/CLK.git
synced 2025-08-07 08:26:28 +00:00
Remove noise.
This commit is contained in:
@@ -932,7 +932,6 @@ void Chipset::write(uint32_t address, uint16_t value, bool allow_conversion) {
|
|||||||
case 0x092: // DDFSTRT
|
case 0x092: // DDFSTRT
|
||||||
if(fetch_window_[0] != value) {
|
if(fetch_window_[0] != value) {
|
||||||
LOG("Fetch window start set to " << std::dec << value);
|
LOG("Fetch window start set to " << std::dec << value);
|
||||||
std::cout << "Fetch window start set to " << std::dec << value << std::endl;
|
|
||||||
}
|
}
|
||||||
fetch_window_[0] = value & 0xfe;
|
fetch_window_[0] = value & 0xfe;
|
||||||
break;
|
break;
|
||||||
@@ -941,7 +940,6 @@ void Chipset::write(uint32_t address, uint16_t value, bool allow_conversion) {
|
|||||||
// means a + 8 is needed below for high-res displays. Investigate.
|
// means a + 8 is needed below for high-res displays. Investigate.
|
||||||
if(fetch_window_[1] != value) {
|
if(fetch_window_[1] != value) {
|
||||||
LOG("Fetch window stop set to " << std::dec << fetch_window_[1]);
|
LOG("Fetch window stop set to " << std::dec << fetch_window_[1]);
|
||||||
std::cout << "Fetch window stop set to " << std::dec << fetch_window_[1] << std::endl;
|
|
||||||
}
|
}
|
||||||
fetch_window_[1] = value & 0xfe;
|
fetch_window_[1] = value & 0xfe;
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user