mirror of
https://github.com/holub/mame
synced 2025-06-04 03:46:29 +03:00
12 lines
303 B
C
12 lines
303 B
C
#pragma once
|
|
|
|
#ifndef __COLECO_CONTROLLERS__
|
|
#define __COLECO_CONTROLLERS__
|
|
|
|
UINT8 coleco_scan_paddles(running_machine &machine, UINT8 *joy_status0, UINT8 *joy_status1);
|
|
UINT8 coleco_paddle_read(running_machine &machine, int port, int joy_mode, UINT8 joy_status);
|
|
|
|
INPUT_PORTS_EXTERN( coleco );
|
|
|
|
#endif
|