mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
ram device: switch to bsd3 by request
This commit is contained in:
parent
a30effe1a7
commit
3b0e77d746
@ -1,5 +1,5 @@
|
||||
// license:GPL-2.0+
|
||||
// copyright-holders:Dirk Best
|
||||
// license: BSD-3-Clause
|
||||
// copyright-holders: Dirk Best
|
||||
/*************************************************************************
|
||||
|
||||
RAM device
|
||||
@ -23,8 +23,6 @@
|
||||
// device type definition
|
||||
const device_type RAM = &device_creator<ram_device>;
|
||||
|
||||
|
||||
|
||||
//-------------------------------------------------
|
||||
// ram_device - constructor
|
||||
//-------------------------------------------------
|
||||
@ -38,8 +36,6 @@ ram_device::ram_device(const machine_config &mconfig, const char *tag, device_t
|
||||
m_default_value = 0xCD;
|
||||
}
|
||||
|
||||
|
||||
|
||||
//-------------------------------------------------
|
||||
// device_start - device-specific startup
|
||||
//-------------------------------------------------
|
||||
@ -68,7 +64,6 @@ void ram_device::device_start()
|
||||
save_item(NAME(m_pointer));
|
||||
}
|
||||
|
||||
|
||||
//-------------------------------------------------
|
||||
// device_validity_check - device-specific validity
|
||||
// checks
|
||||
@ -171,8 +166,6 @@ void ram_device::device_validity_check(validity_checker &valid) const
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
//-------------------------------------------------
|
||||
// parse_string - convert a ram string to an
|
||||
// integer value
|
||||
@ -210,8 +203,6 @@ UINT32 ram_device::parse_string(const char *s)
|
||||
return ram;
|
||||
}
|
||||
|
||||
|
||||
|
||||
//-------------------------------------------------
|
||||
// default_size
|
||||
//-------------------------------------------------
|
||||
|
@ -1,5 +1,5 @@
|
||||
// license:GPL-2.0+
|
||||
// copyright-holders:Dirk Best
|
||||
// license: BSD-3-Clause
|
||||
// copyright-holders: Dirk Best
|
||||
/*************************************************************************
|
||||
|
||||
RAM device
|
||||
|
Loading…
Reference in New Issue
Block a user