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
|
#include "emu.h"
#include "cpu/z80/z80.h"
#include "cpu/z80/z80daisy.h"
#include "sound/wave.h"
#include "imagedev/snapquik.h"
#include "imagedev/cartslot.h"
#include "imagedev/cassette.h"
#include "sound/speaker.h"
#include "machine/ctronics.h"
#include "video/mc6845.h"
#include "machine/z80pio.h"
/* Bits in shared variable:
d5 cassette LED
d4 super80v rom or pcg bankswitch (1=pcg ram, 0=char gen rom)
d2 super80v video or colour bankswitch (1=video ram, 0=colour ram)
d2 super80 screen off (=2mhz) or on (bursts of 2mhz at 50hz = 1mhz) */
class super80_state : public driver_device
{
public:
super80_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_pio(*this, "z80pio"),
m_cass(*this, CASSETTE_TAG),
m_wave(*this, WAVE_TAG),
m_speaker(*this, SPEAKER_TAG),
m_centronics(*this, "centronics"),
m_6845(*this, "crtc"),
m_io_dsw(*this, "DSW"),
m_io_x0(*this, "X0"),
m_io_x1(*this, "X1"),
m_io_x2(*this, "X2"),
m_io_x3(*this, "X3"),
m_io_x4(*this, "X4"),
m_io_x5(*this, "X5"),
m_io_x6(*this, "X6"),
m_io_x7(*this, "X7"),
m_io_config(*this, "CONFIG")
{ }
DECLARE_READ8_MEMBER( super80v_low_r );
DECLARE_READ8_MEMBER( super80v_high_r );
DECLARE_WRITE8_MEMBER( super80v_low_w );
DECLARE_WRITE8_MEMBER( super80v_high_w );
DECLARE_WRITE8_MEMBER( super80v_10_w );
DECLARE_WRITE8_MEMBER( super80v_11_w );
DECLARE_WRITE8_MEMBER( super80_f1_w );
DECLARE_READ8_MEMBER( super80_dc_r );
DECLARE_READ8_MEMBER( super80_f2_r );
DECLARE_WRITE8_MEMBER( super80_dc_w );
DECLARE_WRITE8_MEMBER( super80_f0_w );
DECLARE_WRITE8_MEMBER( super80r_f0_w );
DECLARE_READ8_MEMBER( super80_read_ff );
DECLARE_WRITE8_MEMBER( pio_port_a_w );
DECLARE_READ8_MEMBER( pio_port_b_r );
virtual void machine_reset();
UINT8 m_shared;
UINT8 m_keylatch;
UINT8 m_cass_data[4];
UINT8 m_int_sw;
UINT8 m_last_data;
UINT16 m_vidpg;
UINT8 m_current_palette;
UINT8 m_current_charset;
const UINT8 *m_p_chargen;
UINT8 m_s_options;
UINT8 m_mc6845_cursor[16];
UINT8 m_mc6845_reg[32];
UINT8 m_mc6845_ind;
UINT8 m_framecnt;
UINT8 m_speed;
UINT8 m_flash;
UINT16 m_cursor;
UINT8 *m_p_videoram;
UINT8 *m_p_colorram;
UINT8 *m_p_pcgram;
UINT8 *m_p_ram;
void mc6845_cursor_configure();
DECLARE_DRIVER_INIT(super80);
DECLARE_DRIVER_INIT(super80v);
DECLARE_VIDEO_START(super80);
DECLARE_VIDEO_START(super80v);
DECLARE_PALETTE_INIT(super80m);
UINT32 screen_update_super80(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
UINT32 screen_update_super80v(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
UINT32 screen_update_super80d(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
UINT32 screen_update_super80e(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
UINT32 screen_update_super80m(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void screen_eof_super80m(screen_device &screen, bool state);
TIMER_CALLBACK_MEMBER(super80_timer);
TIMER_CALLBACK_MEMBER(super80_reset);
TIMER_CALLBACK_MEMBER(super80_halfspeed);
required_device<cpu_device> m_maincpu;
required_device<z80pio_device> m_pio;
required_device<cassette_image_device> m_cass;
required_device<wave_device> m_wave;
required_device<speaker_sound_device> m_speaker;
required_device<centronics_device> m_centronics;
optional_device<mc6845_device> m_6845;
required_ioport m_io_dsw;
required_ioport m_io_x0;
required_ioport m_io_x1;
required_ioport m_io_x2;
required_ioport m_io_x3;
required_ioport m_io_x4;
required_ioport m_io_x5;
required_ioport m_io_x6;
required_ioport m_io_x7;
required_ioport m_io_config;
};
/*----------- defined in video/super80.c -----------*/
MC6845_UPDATE_ROW( super80v_update_row );
/*----------- defined in machine/super80.c -----------*/
extern const z80pio_interface super80_pio_intf;
QUICKLOAD_LOAD( super80 );
|