本文整理汇总了C++中running_machine::base_datetime方法的典型用法代码示例。如果您正苦于以下问题:C++ running_machine::base_datetime方法的具体用法?C++ running_machine::base_datetime怎么用?C++ running_machine::base_datetime使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类running_machine
的用法示例。
在下文中一共展示了running_machine::base_datetime方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: set_current_time
void device_rtc_interface::set_current_time(running_machine &machine)
{
system_time systime;
machine.base_datetime(systime);
set_time(true, systime.local_time.year, systime.local_time.month + 1, systime.local_time.mday, systime.local_time.weekday + 1,
systime.local_time.hour, systime.local_time.minute, systime.local_time.second);
}
示例2: sizeof
static void vg230_reset(running_machine &machine)
{
pasogo_state *state = machine.driver_data<pasogo_state>();
vg230_t *vg230 = &state->m_vg230;
system_time systime;
memset(vg230, 0, sizeof(*vg230));
vg230->pmu.write_protected=TRUE;
machine.base_datetime(systime);
vg230->rtc.seconds= systime.local_time.second;
vg230->rtc.minutes= systime.local_time.minute;
vg230->rtc.hours = systime.local_time.hour;
vg230->rtc.days = 0;
vg230->bios_timer.data=0x7200; // HACK
}