int_to_bcd
cmos->century = int_to_bcd(wholeYear / 100);
cmos->year = int_to_bcd(wholeYear % 100);
cmos->month = int_to_bcd(t.tm_mon + 1);
cmos->day = int_to_bcd(t.tm_mday);
cmos->hour = int_to_bcd(t.tm_hour);
cmos->minute = int_to_bcd(t.tm_min);
cmos->second = int_to_bcd(t.tm_sec);
cmos->century = int_to_bcd(wholeYear / 100);
cmos->year = int_to_bcd(wholeYear % 100);
cmos->month = int_to_bcd(t.tm_mon + 1);
cmos->day = int_to_bcd(t.tm_mday);
cmos->hour = int_to_bcd(t.tm_hour);
cmos->minute = int_to_bcd(t.tm_min);
cmos->second = int_to_bcd(t.tm_sec);