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