mirror of
https://github.com/sarah-walker-pcem/pcem.git
synced 2025-07-23 19:50:35 +02:00
18 lines
335 B
C
18 lines
335 B
C
#ifndef _AMSTRAD_H_
|
|
#define _AMSTRAD_H_
|
|
#include "mouse.h"
|
|
#include "device.h"
|
|
|
|
void amstrad_init();
|
|
|
|
extern mouse_t mouse_amstrad;
|
|
extern int amstrad_latch;
|
|
|
|
extern device_t ams1512_device;
|
|
extern device_t ams2086_device;
|
|
extern device_t ams3086_device;
|
|
|
|
enum { AMSTRAD_NOLATCH, AMSTRAD_SW9, AMSTRAD_SW10 };
|
|
|
|
#endif /* _AMSTRAD_H_ */
|