summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/bus/vcs/compumat.h
blob: 80f1df069fd739c426943102d9a2a706e29999ae (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
// license:BSD-3-Clause
// copyright-holders:Fabio Priuli
#ifndef __VCS_COMPUMAT_H
#define __VCS_COMPUMAT_H

#include "rom.h"

//**************************************************************************
//  TYPE DEFINITIONS
//**************************************************************************

// ======================> a26_rom_cm_device

class a26_rom_cm_device : public a26_rom_f6_device
{
public:
	// construction/destruction
	a26_rom_cm_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);

	// device-level overrides
	virtual void device_start();
	virtual ioport_constructor device_input_ports() const;
	virtual void device_reset();

	// reading and writing
	virtual DECLARE_READ8_MEMBER(read_rom);

private:
};


// device type definition
extern const device_type A26_ROM_COMPUMATE;

#endif