Skip to content

Commit

Permalink
fix KC85/3 vs /4 scanline timing
Browse files Browse the repository at this point in the history
  • Loading branch information
floooh committed Aug 10, 2024
1 parent cd7927b commit 4201159
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/systems/kc85.zig
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ pub fn Type(comptime model: Model) type {
};

pub const FREQUENCY = if (model == .KC854) 1770000 else 1750000;
pub const SCANLINE_TICKS = if (model == .KC854) 112 else 113;
pub const SCANLINE_TICKS = if (model == .KC854) 113 else 112;
pub const NUM_SCANLINES = 312;
pub const IRM0_PAGE = 4;

Expand Down

0 comments on commit 4201159

Please sign in to comment.