blob: 44b2c306f390b2740331c6798258f8bd32ee2dc5 (
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
|