blob: f6c3debc7663c085741b9d9e44eb36e8e08e50a5 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// license:BSD-3-Clause
// copyright-holders:Nigel Barnes
#ifndef MAME_BUS_COCO_COCO_WPK2P_H
#define MAME_BUS_COCO_COCO_WPK2P_H
#pragma once
#include "cococart.h"
#include "video/v9938.h"
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// ======================> coco_wpk2p_device
class coco_wpk2p_device :
public device_t,
public device_cococart_interface
{
public:
// construction/destruction
coco_wpk2p_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
protected:
// device-level overrides
virtual void device_start() override;
// optional information overrides
virtual void device_add_mconfig(machine_config &config) override;
private:
required_device<v9958_device> m_v9958;
};
// device type definition
DECLARE_DEVICE_TYPE(COCO_WPK2P, coco_wpk2p_device)
#endif // MAME_BUS_COCO_COCO_WPK2P_H
|