summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/upd71054.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/upd71054.c')
-rw-r--r--src/emu/machine/upd71054.c40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/emu/machine/upd71054.c b/src/emu/machine/upd71054.c
new file mode 100644
index 00000000000..217547a3b75
--- /dev/null
+++ b/src/emu/machine/upd71054.c
@@ -0,0 +1,40 @@
+// license:BSD-3-Clause
+// copyright-holders:hap
+/**********************************************************************
+
+ NEC uPD71054 programmable timer/counter
+
+ TODO:
+ - x
+
+**********************************************************************/
+
+#include "machine/upd71054.h"
+
+
+const device_type UPD71054 = &device_creator<upd71054_device>;
+
+//-------------------------------------------------
+// upd71054_device - constructor
+//-------------------------------------------------
+
+upd71054_device::upd71054_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+ : device_t(mconfig, UPD71054, "NEC uPD71054", tag, owner, clock, "upd71054", __FILE__)
+{
+}
+
+//-------------------------------------------------
+// device_start - device-specific startup
+//-------------------------------------------------
+
+void upd71054_device::device_start()
+{
+}
+
+//-------------------------------------------------
+// device_reset - device-specific reset
+//-------------------------------------------------
+
+void upd71054_device::device_reset()
+{
+}