summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/aim65_40.h
blob: 10b0fd3a2bb2cbf3623365dcf9a93b0415211ae0 (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
#pragma once

#ifndef __AIM65_40__
#define __AIM65_40__

#define M6502_TAG		"m6502"
#define M6522_0_TAG		"m6522_0"
#define M6522_1_TAG		"m6522_1"
#define M6522_2_TAG		"m6522_2"
#define M6551_TAG		"m6551"

class aim65_40_state : public driver_device
{
public:
	aim65_40_state(const machine_config &mconfig, device_type type, const char *tag)
		: driver_device(mconfig, type, tag) { }

	/* devices */
	device_t *m_via0;
	device_t *m_via1;
	device_t *m_via2;
	device_t *m_speaker;
};

#endif