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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
// license:BSD-3-Clause
// copyright-holders:Curt Coder
/**********************************************************************
Conitec Datensysteme GRIP graphics card emulation
Copyright MESS Team.
Visit http://mamedev.org for licensing and usage restrictions.
**********************************************************************/
#pragma once
#ifndef __GRIP__
#define __GRIP__
#include "emu.h"
#include "ecbbus.h"
#include "cpu/z80/z80.h"
#include "cpu/z80/z80daisy.h"
#include "machine/ctronics.h"
#include "machine/i8255.h"
#include "machine/keyboard.h"
#include "machine/z80sti.h"
#include "sound/speaker.h"
#include "video/mc6845.h"
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// ======================> grip_device
class grip_device : public device_t,
public device_ecbbus_card_interface
{
public:
// construction/destruction
grip_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
// optional information overrides
virtual const rom_entry *device_rom_region() const;
virtual machine_config_constructor device_mconfig_additions() const;
virtual ioport_constructor device_input_ports() const;
// not really public
DECLARE_WRITE8_MEMBER( vol0_w );
DECLARE_WRITE8_MEMBER( vol1_w );
DECLARE_WRITE8_MEMBER( flash_w );
DECLARE_WRITE8_MEMBER( page_w );
DECLARE_READ8_MEMBER( stat_r );
DECLARE_READ8_MEMBER( lrs_r );
DECLARE_WRITE8_MEMBER( lrs_w );
DECLARE_READ8_MEMBER( cxstb_r );
DECLARE_WRITE8_MEMBER( cxstb_w );
DECLARE_READ8_MEMBER( ppi_pa_r );
DECLARE_WRITE8_MEMBER( ppi_pa_w );
DECLARE_READ8_MEMBER( ppi_pb_r );
DECLARE_WRITE8_MEMBER( ppi_pc_w );
DECLARE_READ8_MEMBER( sti_gpio_r );
DECLARE_WRITE_LINE_MEMBER( speaker_w );
DECLARE_WRITE8_MEMBER( kb_w );
void crtc_update_row(mc6845_device *device, bitmap_rgb32 &bitmap, const rectangle &cliprect, UINT16 ma, UINT8 ra, UINT16 y, UINT8 x_count, INT8 cursor_x, void *param);
protected:
// device-level overrides
virtual void device_start();
virtual void device_reset();
// device_ecbbus_card_interface overrides
virtual UINT8 ecbbus_io_r(offs_t offset);
virtual void ecbbus_io_w(offs_t offset, UINT8 data);
private:
required_device<i8255_device> m_ppi;
required_device<z80sti_device> m_sti;
required_device<mc6845_device> m_crtc;
required_device<centronics_device> m_centronics;
required_device<speaker_sound_device> m_speaker;
optional_shared_ptr<UINT8> m_video_ram;
required_ioport m_j3a;
required_ioport m_j3b;
required_ioport m_j7;
// sound state
int m_vol0;
int m_vol1;
// keyboard state
int m_ia; // PPI port A interrupt
int m_ib; // PPI port B interrupt
UINT8 m_keydata; // keyboard data
int m_kbf; // keyboard buffer full
// video state
int m_lps; // light pen sense
int m_page; // video page
int m_flash; // flash
// ECB bus state
UINT8 m_base; // ECB base address
UINT8 m_ppi_pa; // PPI port A data
UINT8 m_ppi_pc; // PPI port C data
// timers
emu_timer *m_kb_timer;
};
/*
required_device<hd6345_device> m_crtc;
DECLARE_WRITE8_MEMBER( eprom_w );
DECLARE_WRITE8_MEMBER( dpage_w );
// video state
int m_dpage; // displayed video page
*/
// device type definition
extern const device_type ECB_GRIP21;
#endif
|