diff options
author | 2010-06-30 03:46:21 +0000 | |
---|---|---|
committer | 2010-06-30 03:46:21 +0000 | |
commit | 733b797a3dae6c89b11c9b3f3eaad68995f6ef09 (patch) | |
tree | 6fa31dcfd68bd9c4a34dd8f2c139d63c00d3e33e /src/emu/machine/timekpr.c | |
parent | 2c549dad23fd5b5e8dc48e5a9c8f7790d17e697d (diff) |
Split mame.c into mame.c and machine.c, the latter containing the
running_machine definition and implementation.
Moved global machine-level operations and accessors into methods on the
running_machine class. For the most part, this doesn't affect drivers
except for a few occasional bits:
mame_get_phase() == machine->phase()
add_reset_callback() == machine->add_notifier(MACHINE_NOTIFY_RESET, ...)
add_exit_callback() == machine->add_notifier(MACHINE_NOTIFY_EXIT, ...)
mame_get_base_datetime() == machine->base_datetime()
mame_get_current_datetime() == machine->current_datetime()
Cleaned up the region_info class, removing most global region accessors
except for memory_region() and memory_region_length(). Again, this doesn't
generally affect drivers.
Diffstat (limited to 'src/emu/machine/timekpr.c')
-rw-r--r-- | src/emu/machine/timekpr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/machine/timekpr.c b/src/emu/machine/timekpr.c index 4dfafc7370d..3abb9c5dfd0 100644 --- a/src/emu/machine/timekpr.c +++ b/src/emu/machine/timekpr.c @@ -286,7 +286,7 @@ static DEVICE_START(timekeeper) timekeeper_state *c = get_safe_token(device); emu_timer *timer; attotime duration; - mame_system_time systime; + system_time systime; /* validate some basic stuff */ assert(device != NULL); @@ -295,7 +295,7 @@ static DEVICE_START(timekeeper) assert(device->machine != NULL); assert(device->machine->config != NULL); - mame_get_base_datetime(device->machine, &systime); + device->machine->base_datetime(systime); c->device = device; c->control = 0; |