added boilerplate comments (nw)

This commit is contained in:
smf- 2016-10-24 14:21:02 +01:00
parent 76ab7e62de
commit f5c99a8089

View file

@ -441,6 +441,11 @@ void alpha8201_cpu_device::device_start()
}
//-------------------------------------------------
// state_import - import state into the device,
// after it has been set
//-------------------------------------------------
void alpha8201_cpu_device::state_import(const device_state_entry &entry)
{
switch (entry.index())
@ -498,6 +503,11 @@ void alpha8201_cpu_device::state_import(const device_state_entry &entry)
}
//-------------------------------------------------
// state_export - export state from the device,
// to a known location where it can be read
//-------------------------------------------------
void alpha8201_cpu_device::state_export(const device_state_entry &entry)
{
switch (entry.index())
@ -546,6 +556,11 @@ void alpha8201_cpu_device::state_export(const device_state_entry &entry)
}
//-------------------------------------------------
// state_string_export - export state as a string
// for the debugger
//-------------------------------------------------
void alpha8201_cpu_device::state_string_export(const device_state_entry &entry, std::string &str) const
{
switch (entry.index())