mirror of
https://github.com/holub/mame
synced 2025-05-22 21:58:57 +03:00

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]
18 lines
361 B
C
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_ */
|