summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/msx_switched.h
blob: 9db37baec616496600b081083a04cc8002b6096c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// license:BSD-3-Clause
// copyright-holders:Wilbert Pol
#ifndef __MSX_SWITCHED_H
#define __MSX_SWITCHED_H


class msx_switched_interface
{
public:
	virtual DECLARE_READ8_MEMBER(switched_read) = 0;
	virtual DECLARE_WRITE8_MEMBER(switched_write) = 0;
};

#endif