diff --git a/src/mame/layout/tek4404.lay b/src/mame/layout/tek4404.lay new file mode 100644 index 0000000000000..80cd1cc64f974 --- /dev/null +++ b/src/mame/layout/tek4404.lay @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/mame/tektronix/tek440x.cpp b/src/mame/tektronix/tek440x.cpp index e92d385c4f85b..ac693c91b56b4 100644 --- a/src/mame/tektronix/tek440x.cpp +++ b/src/mame/tektronix/tek440x.cpp @@ -64,6 +64,8 @@ #include "screen.h" #include "speaker.h" +#include "tek4404.lh" + #include "logmacro.h" namespace { @@ -467,6 +469,8 @@ void tek440x_state::tek4404(machine_config &config) SPEAKER(config, "mono").front_center(); SN76496(config, m_snsnd, 25.2_MHz_XTAL / 8).add_route(ALL_OUTPUTS, "mono", 0.80); + + config.set_default_layout(layout_tek4404); }