summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/msbc1.h
blob: 870e0d651677dd6845082779c2bb7d8908a382c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// 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