Esempio n. 1
0
int mc146818_device::get_dayofweek()
{
	return from_ram(m_data[REG_DAYOFWEEK]);
}
Esempio n. 2
0
int mc146818_device::get_minutes()
{
	return from_ram(m_data[REG_MINUTES]);
}
Esempio n. 3
0
int mc146818_device::get_seconds()
{
	return from_ram(m_data[REG_SECONDS]);
}
Esempio n. 4
0
int mc146818_device::get_year()
{
	return from_ram(m_data[REG_YEAR]);
}
Esempio n. 5
0
int mc146818_device::get_month()
{
	return from_ram(m_data[REG_MONTH]);
}
Esempio n. 6
0
int mc146818_device::get_dayofmonth()
{
	return from_ram(m_data[REG_DAYOFMONTH]);
}