summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/dinvram.cpp
blob: 7a3ec7f658fd722d88bf4fa01afb63df92c336ba (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
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
/***************************************************************************

    dinvram.cpp

    Device NVRAM interfaces.

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

#include "emu.h"



//**************************************************************************
//  DEVICE NVRAM INTERFACE
//**************************************************************************

//-------------------------------------------------
//  device_nvram_interface - constructor
//-------------------------------------------------

device_nvram_interface::device_nvram_interface(const machine_config &mconfig, device_t &device, bool backup_enabled)
	: device_interface(device, "nvram")
	, m_backup_enabled(backup_enabled)
{
}


//-------------------------------------------------
//  ~device_nvram_interface - destructor
//-------------------------------------------------

device_nvram_interface::~device_nvram_interface()
{
}