summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cheat.h
blob: 5c3c62e3419de82f021e30a2d49774e19ebd51ac (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(running_machine *machine, int selection);

void cheat_display_watches(void);

#endif	/* __CHEAT_H__ */