blob: 567d15c10f283d1641e9453bd774329bda8efe6a [file] [log] [blame]
static void power_down_reset_check(void)
{
uint8_t cmos;
cmos=cmos_read(RTC_BOOT_BYTE)>>4 ;
print_debug("Boot byte = ");
print_debug_hex8(cmos);
print_debug("\n");
if((cmos>2)&&(cmos&1)) full_reset();
}