int mc146818_device::get_dayofweek() { return from_ram(m_data[REG_DAYOFWEEK]); }
int mc146818_device::get_minutes() { return from_ram(m_data[REG_MINUTES]); }
int mc146818_device::get_seconds() { return from_ram(m_data[REG_SECONDS]); }
int mc146818_device::get_year() { return from_ram(m_data[REG_YEAR]); }
int mc146818_device::get_month() { return from_ram(m_data[REG_MONTH]); }
int mc146818_device::get_dayofmonth() { return from_ram(m_data[REG_DAYOFMONTH]); }