summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/bus/vtech/memexp/wordpro.h
blob: 73a7acdd405ab2dc50d7955d27adf78a14e13edd (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
42
// license:???
// copyright-holders:???
/***************************************************************************

    Dick Smith VZ-300 WordPro Cartridge

    license: MAME, GPL-2.0+
    copyright-holders: Dirk Best

***************************************************************************/

#pragma once

#ifndef __VTECH_MEMEXP_WORDPRO_H__
#define __VTECH_MEMEXP_WORDPRO_H__

#include "emu.h"
#include "memexp.h"


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

// ======================> wordpro_device

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

protected:
	virtual const rom_entry *device_rom_region() const;
	virtual void device_start();
	virtual void device_reset();
};

// device type definition
extern const device_type WORDPRO;

#endif // __VTECH_MEMEXP_WORDPRO_H__