blob: 5a0519216851e5a445bf04586c8b9dc24ab8511c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
// license:BSD-3-Clause
// copyright-holders:Enik Land
/**********************************************************************
Sega SK-1100 keyboard link cable emulation
The cable is used only to link two Mark III's through keyboard, what
is supported by the game F-16 Fighting Falcon for its 2 players mode.
**********************************************************************/
#ifndef MAME_BUS_SG1000_EXP_SK1100_KBLINK_H
#define MAME_BUS_SG1000_EXP_SK1100_KBLINK_H
#pragma once
#include "sk1100prn.h"
#include "imagedev/bitbngr.h"
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// ======================> sk1100_link_cable_device
class sk1100_link_cable_device : public device_t,
public device_sk1100_printer_port_interface
{
public:
// construction/destruction
sk1100_link_cable_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
protected:
// device-level overrides
virtual void device_start() override;
virtual void device_reset() override;
virtual void device_add_mconfig(machine_config &config) override;
// device_sk1100_link_cable_interface overrides
virtual DECLARE_WRITE_LINE_MEMBER( input_data ) override { m_data = state; set_data_transfer(); }
virtual DECLARE_WRITE_LINE_MEMBER( input_reset ) override { m_reset = state; set_data_transfer(); }
virtual DECLARE_WRITE_LINE_MEMBER( input_feed ) override { m_feed = state; set_data_transfer(); }
virtual DECLARE_READ_LINE_MEMBER( output_fault ) override { set_data_read(); return m_fault; }
virtual DECLARE_READ_LINE_MEMBER( output_busy ) override { set_data_read(); return m_busy; }
TIMER_CALLBACK_MEMBER(update_queue);
TIMER_CALLBACK_MEMBER(send_tick);
TIMER_CALLBACK_MEMBER(read_tick);
private:
static constexpr int TIMER_POLL = 1;
static constexpr int TIMER_SEND = 2;
static constexpr int TIMER_READ = 3;
void queue();
void set_data_transfer();
void set_data_read();
required_device<bitbanger_device> m_stream;
u8 m_input_buffer[1000];
u32 m_input_count;
u32 m_input_index;
emu_timer *m_timer_poll;
emu_timer *m_timer_send;
emu_timer *m_timer_read;
bool m_update_received_data;
int m_data;
int m_reset;
int m_feed;
int m_busy;
int m_fault;
};
// device type definition
DECLARE_DEVICE_TYPE(SK1100_LINK_CABLE, sk1100_link_cable_device)
#endif // MAME_BUS_SG1000_EXP_SK1100_KBLINK_H
|