summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/upd71054.c
diff options
context:
space:
mode:
author Michaël Banaan Ananas <happppp@users.noreply.github.com>2014-10-06 16:02:37 +0000
committer Michaël Banaan Ananas <happppp@users.noreply.github.com>2014-10-06 16:02:37 +0000
commit53e61f61711e0793faae065a06782f928f3c6dec (patch)
treea846cf13aa4ee08a246cd20230ae4e46b757fdab /src/emu/machine/upd71054.c
parent9f5fc08a1b4070ea1ae99dc04c596b5db49e7808 (diff)
upon reading datasheet further, it became obvious that uPD71054 == 82C54
Diffstat (limited to 'src/emu/machine/upd71054.c')
-rw-r--r--src/emu/machine/upd71054.c40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/emu/machine/upd71054.c b/src/emu/machine/upd71054.c
deleted file mode 100644
index 217547a3b75..00000000000
--- a/src/emu/machine/upd71054.c
+++ /dev/null
@@ -1,40 +0,0 @@
-// 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()
-{
-}