summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cheat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cheat.h')
-rw-r--r--src/emu/cheat.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/emu/cheat.h b/src/emu/cheat.h
new file mode 100644
index 00000000000..566742c69f3
--- /dev/null
+++ b/src/emu/cheat.h
@@ -0,0 +1,25 @@
+/*********************************************************************
+
+ cheat.h
+
+ Cheat system.
+
+ Copyright (c) 1996-2007, Nicola Salmoria and the MAME Team.
+ Visit http://mamedev.org for licensing and usage restrictions.
+
+*********************************************************************/
+
+#pragma once
+
+#ifndef __CHEAT_H__
+#define __CHEAT_H__
+
+#include "mamecore.h"
+
+void cheat_init(running_machine *machine);
+
+int cheat_menu(int selection);
+
+void cheat_display_watches(void);
+
+#endif /* __CHEAT_H__ */