From 83f157dabfd65a54b9838e39a00b3a3e75d38a79 Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 30 Mar 2025 19:10:05 +0100 Subject: [PATCH 1/3] Layout for tek4404 --- src/mame/layout/tek4404.lay | 52 +++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 src/mame/layout/tek4404.lay 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 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From c8428871476d0ea99fd7f51823f582e01cbcc67a Mon Sep 17 00:00:00 2001 From: Adam Date: Wed, 9 Apr 2025 18:22:43 +0100 Subject: [PATCH 2/3] - adding linkage to tek4404.lay in driver --- src/mame/tektronix/tek440x.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mame/tektronix/tek440x.cpp b/src/mame/tektronix/tek440x.cpp index e92d385c4f85b..d9d0e07bb7325 100644 --- a/src/mame/tektronix/tek440x.cpp +++ b/src/mame/tektronix/tek440x.cpp @@ -467,6 +467,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); } From 0104883b74cbb437507ac189d95ecb1276bf449f Mon Sep 17 00:00:00 2001 From: Adam Date: Wed, 9 Apr 2025 18:24:54 +0100 Subject: [PATCH 3/3] - include layout header --- src/mame/tektronix/tek440x.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mame/tektronix/tek440x.cpp b/src/mame/tektronix/tek440x.cpp index d9d0e07bb7325..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 {