summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/msbc1.h
blob: 5a582e79b4532cabf7242604617d5b960a53b1c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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) { }

	virtual void machine_reset();
};

#endif