summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/msbc1.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/includes/msbc1.h')
-rw-r--r--src/mess/includes/msbc1.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/mess/includes/msbc1.h b/src/mess/includes/msbc1.h
deleted file mode 100644
index 870e0d65167..00000000000
--- a/src/mess/includes/msbc1.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Miodrag Milanovic, Curt Coder
-#pragma once
-
-#ifndef __MSBC1__
-#define __MSBC1__
-
-#define MC68000R12_TAG "u50"
-#define MK68564_0_TAG "u14"
-#define MK68564_1_TAG "u15"
-#define MC68230L10_TAG "u16"
-
-class msbc1_state : public driver_device
-{
-public:
- msbc1_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
- m_maincpu(*this,MC68000R12_TAG)
- {
- }
-
- virtual void machine_reset();
-
-private:
- required_device<cpu_device> m_maincpu;
-};
-
-#endif