FDI stream images are now also handled by the 86F handler; Both floppy drives' motors now spin separately; Added Plantronics ColorPlus emulation per patch from PCem forum; Applied all mainline PCem commits; Fixed several bugs.
16 lines
471 B
C
16 lines
471 B
C
typedef struct colorplus_t
|
|
{
|
|
cga_t cga;
|
|
uint8_t control;
|
|
} colorplus_t;
|
|
|
|
void colorplus_init(colorplus_t *colorplus);
|
|
void colorplus_out(uint16_t addr, uint8_t val, void *p);
|
|
uint8_t colorplus_in(uint16_t addr, void *p);
|
|
void colorplus_write(uint32_t addr, uint8_t val, void *p);
|
|
uint8_t colorplus_read(uint32_t addr, void *p);
|
|
void colorplus_recalctimings(colorplus_t *colorplus);
|
|
void colorplus_poll(void *p);
|
|
|
|
extern device_t colorplus_device;
|