blob: 4b5c1faea5b0139cecc439c5b6e910f33a4b650b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*********************************************************************
cheat.h
Cheat system.
Copyright 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__ */
|