summaryrefslogblamecommitdiffstatshomepage
path: root/src/emu/dinvram.cpp
blob: 4767d7d633cdd452e39804afd8a79cfbf6415c5a (plain) (tree)
1
2
3
4
5
6
7
8

                                





                                                                            






                                                                            






                                                                            
                                                                                               
                                           










                                                   
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
/***************************************************************************

    dinvram.c

    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)
	: device_interface(device, "nvram")
{
}


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

device_nvram_interface::~device_nvram_interface()
{
}