From c445eaec3e640433ef70a71fed563919d18f9a46 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 19 Mar 2017 17:38:26 -0400 Subject: [PATCH] Switched startup values, following a comment on AtariAge. May or may not be correct, the thread was speculative. --- Components/6532/6532.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Components/6532/6532.hpp b/Components/6532/6532.hpp index 69f85b996..b9b72ff7e 100644 --- a/Components/6532/6532.hpp +++ b/Components/6532/6532.hpp @@ -131,7 +131,7 @@ template class MOS6532 { port_{{.output_mask = 0, .output = 0}, {.output_mask = 0, .output = 0}}, a7_interrupt_({.last_port_value = 0, .enabled = false}), interrupt_line_(false), - timer_{.value = 0, .activeShift = 0, .writtenShift = 0, .interrupt_enabled = false} + timer_{.value = 16320, .activeShift = 6, .writtenShift = 6, .interrupt_enabled = false} {} inline void set_port_did_change(int port)