summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hp9845_io/98032.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/hp9845_io/98032.cpp')
-rw-r--r--src/devices/bus/hp9845_io/98032.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/devices/bus/hp9845_io/98032.cpp b/src/devices/bus/hp9845_io/98032.cpp
index fc55a786fe2..c4838331b87 100644
--- a/src/devices/bus/hp9845_io/98032.cpp
+++ b/src/devices/bus/hp9845_io/98032.cpp
@@ -13,7 +13,6 @@
#include "emu.h"
#include "98032.h"
-#include "hp9885.h"
// Debugging
#define VERBOSE 0
@@ -56,13 +55,12 @@ hp98032_io_card_device::~hp98032_io_card_device()
{
}
-void hp98032_io_card_device::device_add_mconfig(machine_config &config)
-{
+MACHINE_CONFIG_START(hp98032_io_card_device::device_add_mconfig)
HP98032_GPIO_SLOT(config , m_gpio , 0);
m_gpio->pflg_cb().set(FUNC(hp98032_io_card_device::pflg_w));
m_gpio->psts_cb().set(FUNC(hp98032_io_card_device::psts_w));
m_gpio->eir_cb().set(FUNC(hp98032_io_card_device::eir_w));
-}
+MACHINE_CONFIG_END
static INPUT_PORTS_START(hp98032_port)
MCFG_HP9845_IO_SC(2)
@@ -355,7 +353,6 @@ hp98032_gpio_slot_device::hp98032_gpio_slot_device(const machine_config &mconfig
{
option_reset();
option_add("loopback" , HP98032_GPIO_LOOPBACK);
- option_add("hp9885" , HP9885);
set_default_option(nullptr);
set_fixed(false);
}