1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 08:49:37 +00:00

The latest Atari Age-discovered numbers suggest this starts up in 1024T mode.

This commit is contained in:
Thomas Harte 2017-03-21 18:22:50 -04:00
parent a3c22d5abb
commit a4c5eebd1e

View File

@ -131,7 +131,7 @@ template <class T> class MOS6532 {
port_{{.output_mask = 0, .output = 0}, {.output_mask = 0, .output = 0}}, port_{{.output_mask = 0, .output = 0}, {.output_mask = 0, .output = 0}},
a7_interrupt_({.last_port_value = 0, .enabled = false}), a7_interrupt_({.last_port_value = 0, .enabled = false}),
interrupt_line_(false), interrupt_line_(false),
timer_{.value = 16320, .activeShift = 6, .writtenShift = 6, .interrupt_enabled = false} timer_{.value = (unsigned int)((rand() & 0xff) << 10), .activeShift = 10, .writtenShift = 10, .interrupt_enabled = false}
{} {}
inline void set_port_did_change(int port) inline void set_port_did_change(int port)