diff options
author | 2009-09-08 01:40:11 +0000 | |
---|---|---|
committer | 2009-09-08 01:40:11 +0000 | |
commit | 3d59122bb25c14f275227ed6cd4fcfb24d15f92b (patch) | |
tree | 292a6966a2ac1611874bdd77a170700467eb32ac /src/emu/mame.h | |
parent | 26d54c2395f2c38df662b17db7789667f92e87b3 (diff) |
Added debug_global_input_code_pressed() for use in debugging.
Also some other small tweaks/cleanups.
Diffstat (limited to 'src/emu/mame.h')
-rw-r--r-- | src/emu/mame.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/emu/mame.h b/src/emu/mame.h index 7eee1ef8180..b847643f8cb 100644 --- a/src/emu/mame.h +++ b/src/emu/mame.h @@ -270,6 +270,9 @@ void add_exit_callback(running_machine *machine, void (*callback)(running_machin /* handle update tasks for a frame boundary */ void mame_frame_update(running_machine *machine); +/* return true if the given machine is valid */ +int mame_is_valid_machine(running_machine *machine); + /* ----- global system states ----- */ |