diff options
Diffstat (limited to 'src/emu/bus/adamnet')
-rw-r--r-- | src/emu/bus/adamnet/adamnet.c | 7 | ||||
-rw-r--r-- | src/emu/bus/adamnet/adamnet.h | 7 | ||||
-rw-r--r-- | src/emu/bus/adamnet/fdc.c | 9 | ||||
-rw-r--r-- | src/emu/bus/adamnet/fdc.h | 5 |
4 files changed, 7 insertions, 21 deletions
diff --git a/src/emu/bus/adamnet/adamnet.c b/src/emu/bus/adamnet/adamnet.c index 39e39810255..f522930bdbf 100644 --- a/src/emu/bus/adamnet/adamnet.c +++ b/src/emu/bus/adamnet/adamnet.c @@ -251,6 +251,13 @@ WRITE_LINE_MEMBER( adamnet_device::reset_w ) // SLOT_INTERFACE( adamnet_devices ) //------------------------------------------------- +// slot devices +#include "ddp.h" +#include "fdc.h" +#include "kb.h" +#include "printer.h" +#include "spi.h" + SLOT_INTERFACE_START( adamnet_devices ) SLOT_INTERFACE("ddp", ADAM_DDP) SLOT_INTERFACE("fdc", ADAM_FDC) diff --git a/src/emu/bus/adamnet/adamnet.h b/src/emu/bus/adamnet/adamnet.h index 37002f72a60..8c99cd4d622 100644 --- a/src/emu/bus/adamnet/adamnet.h +++ b/src/emu/bus/adamnet/adamnet.h @@ -127,13 +127,6 @@ extern const device_type ADAMNET; extern const device_type ADAMNET_SLOT; -// slot devices -#include "ddp.h" -#include "fdc.h" -#include "kb.h" -#include "printer.h" -#include "spi.h" - SLOT_INTERFACE_EXTERN( adamnet_devices ); diff --git a/src/emu/bus/adamnet/fdc.c b/src/emu/bus/adamnet/fdc.c index fe7bd49683b..1db2d7ec02c 100644 --- a/src/emu/bus/adamnet/fdc.c +++ b/src/emu/bus/adamnet/fdc.c @@ -358,12 +358,3 @@ WRITE8_MEMBER( adam_fdc_device::p2_w ) m_bus->txd_w(this, BIT(data, 4)); } - - -//------------------------------------------------- -// DEVICE_INPUT_DEFAULTS( drive2 ) -//------------------------------------------------- - -DEVICE_INPUT_DEFAULTS_START( drive2 ) - DEVICE_INPUT_DEFAULTS("SW3", 0x01, 0x01) -DEVICE_INPUT_DEFAULTS_END diff --git a/src/emu/bus/adamnet/fdc.h b/src/emu/bus/adamnet/fdc.h index b8ec89575a6..617f8bd24c5 100644 --- a/src/emu/bus/adamnet/fdc.h +++ b/src/emu/bus/adamnet/fdc.h @@ -71,9 +71,4 @@ protected: extern const device_type ADAM_FDC; -// default inputs -extern const input_device_default DEVICE_INPUT_DEFAULTS_NAME( drive2 )[]; - - - #endif |