summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/m6m80011ap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/m6m80011ap.h')
-rw-r--r--src/devices/machine/m6m80011ap.h20
1 files changed, 1 insertions, 19 deletions
diff --git a/src/devices/machine/m6m80011ap.h b/src/devices/machine/m6m80011ap.h
index 2f1d0e9102a..01ccfe2f31a 100644
--- a/src/devices/machine/m6m80011ap.h
+++ b/src/devices/machine/m6m80011ap.h
@@ -5,28 +5,12 @@
#pragma once
-
-
-//**************************************************************************
-// INTERFACE CONFIGURATION MACROS
-//**************************************************************************
-
-/* TODO: frequency */
-#define MCFG_M6M80011AP_ADD(_tag) \
- MCFG_DEVICE_ADD(_tag, M6M80011AP, XTAL(32'768))
-
-//**************************************************************************
-// TYPE DEFINITIONS
-//**************************************************************************
-
-// ======================> m6m80011ap_device
-
class m6m80011ap_device : public device_t,
public device_nvram_interface
{
public:
// construction/destruction
- m6m80011ap_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ m6m80011ap_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 32'768); /* TODO: frequency */
// I/O operations
DECLARE_READ_LINE_MEMBER( read_bit );
@@ -68,8 +52,6 @@ private:
uint16_t m_eeprom_data[0x80];
};
-
-// device type definition
DECLARE_DEVICE_TYPE(M6M80011AP, m6m80011ap_device)
#endif // MAME_MACHINE_M6M80011AP_H