mirror of
https://github.com/TomHarte/CLK.git
synced 2025-04-06 10:38:16 +00:00
Corrects counter scales, adds a read for $c032.
Albeit that I have no idea what that's supposed to read as.
This commit is contained in:
parent
a9ce43d244
commit
11fe8ab6db
@ -232,6 +232,10 @@ class ConcreteMachine:
|
||||
case Write(0xc032):
|
||||
video_->clear_interrupts(*value);
|
||||
break;
|
||||
case Read(0xc032):
|
||||
// TODO: this seems to be undocumented, but used. What value is likely?
|
||||
*value = 0xff;
|
||||
break;
|
||||
|
||||
// Shadow register.
|
||||
case Read(0xc035):
|
||||
|
@ -440,8 +440,8 @@ Video::Counters Video::get_counters(Cycles offset) {
|
||||
cycles_into_frame = (cycles_into_frame + 25 - start_of_pixels)%(Lines * CyclesPerLine);
|
||||
|
||||
// Break it down.
|
||||
const auto cycles_into_line = cycles_into_frame / CyclesPerLine;
|
||||
const auto lines_into_frame = (cycles_into_frame % CyclesPerLine) + 0x100;
|
||||
const auto cycles_into_line = cycles_into_frame / (CyclesPerLine * CyclesPerTick);
|
||||
const auto lines_into_frame = (cycles_into_frame % (CyclesPerLine * CyclesPerTick)) + 0x100;
|
||||
|
||||
return Counters(
|
||||
lines_into_frame - ((lines_into_frame / 0x200) * 0x106), // TODO: this assumes NTSC.
|
||||
|
Loading…
x
Reference in New Issue
Block a user