summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/b16.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/b16.cpp')
-rw-r--r--src/mame/drivers/b16.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/b16.cpp b/src/mame/drivers/b16.cpp
index 30944f6e273..807b46461e3 100644
--- a/src/mame/drivers/b16.cpp
+++ b/src/mame/drivers/b16.cpp
@@ -55,6 +55,7 @@ public:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
+ void b16(machine_config &config);
};
#define mc6845_h_char_total (m_crtc_vreg[0])
@@ -269,7 +270,7 @@ WRITE8_MEMBER(b16_state::memory_write_byte)
}
-static MACHINE_CONFIG_START( b16 )
+MACHINE_CONFIG_START(b16_state::b16)
/* basic machine hardware */
MCFG_CPU_ADD("maincpu",I8086, XTAL_14_31818MHz/2) //unknown xtal
MCFG_CPU_PROGRAM_MAP(b16_map)