Searched refs:read_cmos (Results 1 - 1 of 1) sorted by relevance

/osnet-11/usr/src/grub/grub2/grub-core/efiemu/runtime/
H A Defiemu.c186 read_cmos (grub_uint8_t addr) function
214 state = read_cmos (0xb);
217 time->year = 2000 + bcd_to_hex (read_cmos (0x9));
218 time->month = bcd_to_hex (read_cmos (0x8));
219 time->day = bcd_to_hex (read_cmos (0x7));
220 time->hour = bcd_to_hex (read_cmos (0x4));
225 time->minute = bcd_to_hex (read_cmos (0x2));
226 time->second = bcd_to_hex (read_cmos (0x0));
230 time->year = 2000 + read_cmos (0x9);
231 time->month = read_cmos (
[all...]

Completed in 21 milliseconds