1 // license:BSD-3-Clause
2 // copyright-holders:Barry Rodewald
3 /*
4  * wpc_flip2.h
5  *
6  */
7 
8 #ifndef MAME_INCLUDES_WPC_FLIP2_H
9 #define MAME_INCLUDES_WPC_FLIP2_H
10 
11 #pragma once
12 
13 #include "includes/wpc_flip1.h"
14 
15 class wpc_flip2_state : public wpc_flip1_state
16 {
17 public:
wpc_flip2_state(const machine_config & mconfig,device_type type,const char * tag)18 	wpc_flip2_state(const machine_config &mconfig, device_type type, const char *tag)
19 		: wpc_flip1_state(mconfig, type, tag)
20 	{ }
21 
22 	void init_wpc_flip2();
23 	void wpc_flip2(machine_config &config);
24 
25 protected:
26 	void wpc_flip2_map(address_map &map);
27 };
28 
29 #endif // MAME_INCLUDES_WPC_FLIP2_H
30