summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/bus/odyssey2/chess.h
blob: 66015c033cbcb8a50488c4b3fa577b1a54d3a903 (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
// license:BSD-3-Clause
// copyright-holders:etabeta
#ifndef __O2_CHESS_H
#define __O2_CHESS_H

#include "slot.h"
#include "rom.h"
#include "cpu/z80/z80.h"


// ======================> o2_chess_device

class o2_chess_device : public o2_rom_device
{
	virtual machine_config_constructor device_mconfig_additions() const;
//  virtual const rom_entry *device_rom_region() const;

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

private:
	required_device<nsc800_device> m_cpu;
};



// device type definition
extern const device_type O2_ROM_CHESS;


#endif