summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/i86/i86mem.h
blob: a49797c56a05b5139dec8f469a95f0203ecceee3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
typedef struct _memory_interface memory_interface;
struct _memory_interface
{
	offs_t	fetch_xor;

	UINT8	(*rbyte)(address_space *, offs_t);
	UINT16	(*rword)(address_space *, offs_t);
	void	(*wbyte)(address_space *, offs_t, UINT8);
	void	(*wword)(address_space *, offs_t, UINT16);
};