summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/dinvram.h
blob: 0549e183c6a0b74984e31664cf32d62072ab2bc9 (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
43
44
45
46
47
48
49
50
51
52
53
54
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
/***************************************************************************

    dinvram.h

    Device NVRAM interfaces.

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

#pragma once

#ifndef __EMU_H__
#error Dont include this file directly; include emu.h instead.
#endif

#ifndef MAME_EMU_DINVRAM
#define MAME_EMU_DINVRAM


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


// ======================> device_nvram_interface

// class representing interface-specific live nvram
class device_nvram_interface : public device_interface
{
public:
	// construction/destruction
	device_nvram_interface(const machine_config &mconfig, device_t &device);
	virtual ~device_nvram_interface();

	// public accessors... for now
	void nvram_reset() { nvram_default(); }
	bool nvram_load(util::read_stream &file) { return nvram_read(file); }
	bool nvram_save(util::write_stream &file) { return nvram_write(file); }
	bool nvram_can_save() { return nvram_can_write(); }

protected:
	// derived class overrides
	virtual void nvram_default() = 0;
	virtual bool nvram_read(util::read_stream &file) = 0;
	virtual bool nvram_write(util::write_stream &file) = 0;
	virtual bool nvram_can_write() { return true; }
};

// iterator
typedef device_interface_enumerator<device_nvram_interface> nvram_interface_enumerator;


#endif  /* MAME_EMU_DINVRAM */