mirror of
https://github.com/holub/mame
synced 2025-05-29 00:53:09 +03:00
29 lines
632 B
C
29 lines
632 B
C
/***************************************************************************
|
|
|
|
watchdog.h
|
|
|
|
Watchdog handling
|
|
|
|
Copyright Nicola Salmoria and the MAME Team.
|
|
Visit http://mamedev.org for licensing and usage restrictions.
|
|
|
|
***************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#ifndef __WATCHDOG_H__
|
|
#define __WATCHDOG_H__
|
|
|
|
|
|
/* startup */
|
|
void watchdog_init(running_machine *machine);
|
|
|
|
/* reset the watchdog */
|
|
void watchdog_reset(running_machine *machine);
|
|
|
|
/* enable/disable the watchdog */
|
|
void watchdog_enable(running_machine *machine, int enable);
|
|
|
|
|
|
#endif /* __WATCHDOG_H__ */
|