mame/src/mess/includes/ps2.h
Aaron Giles 0dc663e2e9 Memory handler cleanup 3. Add mem_mask parameter
to 8-bit handlers to match the others. To ease
pain, added DECLARE_READ/WRITE_HANDLER macros that
set up a default parameter. Also updated devcb so
that the handlers can be called with or without the
mem_mask. [Aaron Giles]
2012-09-17 09:16:44 +00:00

18 lines
361 B
C

/*****************************************************************************
*
* includes/ps2.h
*
****************************************************************************/
#ifndef PS2_H_
#define PS2_H_
/*----------- defined in machine/ps2.c -----------*/
DECLARE_READ8_HANDLER(ps2_pos_r);
DECLARE_WRITE8_HANDLER(ps2_pos_w);
#endif /* PS2_H_ */