1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-02 20:30:00 +00:00

Switched startup values, following a comment on AtariAge. May or may not be correct, the thread was speculative.

This commit is contained in:
Thomas Harte 2017-03-19 17:38:26 -04:00
parent 7c66c36d3f
commit c445eaec3e

View File

@ -131,7 +131,7 @@ template <class T> 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)