mirror of
https://github.com/holub/mame
synced 2025-04-26 10:13:37 +03:00
36 lines
945 B
C++
36 lines
945 B
C++
// 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()
|
|
{
|
|
}
|