1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-13 07:30:21 +00:00

Ensured proper default behaviour.

This commit is contained in:
Thomas Harte 2016-11-25 20:30:27 +08:00
parent d33f3b9224
commit 5be45c6c50

View File

@ -18,7 +18,8 @@ Machine::Machine() :
keyboard_read_count_(0),
keyboard_(new Keyboard),
ram_top_(0xbfff),
paged_rom_(rom_)
paged_rom_(rom_),
microdisc_is_enabled_(false)
{
set_clock_rate(1000000);
via_.set_interrupt_delegate(this);