Searched defs:cmos_data (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/PC/
H A DDevRTC.cpp133 uint8_t cmos_data[256]; member in struct:RTCSTATE
212 period_code = pThis->cmos_data[RTC_REG_A] & 0x0f;
214 && (pThis->cmos_data[RTC_REG_B] & REG_B_PIE))
267 if (pThis->cmos_data[RTC_REG_B] & 0x04)
275 if (pThis->cmos_data[RTC_REG_B] & 0x04)
285 tm->tm_sec = from_bcd(pThis, pThis->cmos_data[RTC_SECONDS]);
286 tm->tm_min = from_bcd(pThis, pThis->cmos_data[RTC_MINUTES]);
287 tm->tm_hour = from_bcd(pThis, pThis->cmos_data[RTC_HOURS] & 0x7f);
288 if (!(pThis->cmos_data[RTC_REG_B] & 0x02))
291 if (pThis->cmos_data[RTC_HOUR
[all...]

Completed in 167 milliseconds