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
|
/*****************************************************************************
*
* includes/llc.h
*
****************************************************************************/
#ifndef LLC_H_
#define LLC_H_
#include "emu.h"
#include "cpu/z80/z80.h"
#include "cpu/z80/z80daisy.h"
#include "machine/z80pio.h"
#include "machine/z80ctc.h"
#include "machine/ram.h"
#include "machine/k7659kb.h"
#include "sound/speaker.h"
class llc_state : public driver_device
{
public:
llc_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_speaker(*this, "speaker"),
m_p_videoram(*this, "videoram"),
m_maincpu(*this, "maincpu"),
m_ram(*this, RAM_TAG) { }
DECLARE_WRITE8_MEMBER(llc2_rom_disable_w);
DECLARE_WRITE8_MEMBER(llc2_basic_enable_w);
DECLARE_WRITE8_MEMBER(kbd_put);
DECLARE_READ8_MEMBER(llc1_port1_a_r);
DECLARE_READ8_MEMBER(llc1_port2_a_r);
DECLARE_READ8_MEMBER(llc1_port2_b_r);
DECLARE_WRITE8_MEMBER(llc1_port1_a_w);
DECLARE_WRITE8_MEMBER(llc1_port1_b_w);
DECLARE_READ8_MEMBER(llc2_port1_b_r);
DECLARE_READ8_MEMBER(llc2_port2_a_r);
DECLARE_WRITE8_MEMBER(llc2_port1_b_w);
const UINT8 *m_p_chargen;
optional_device<speaker_sound_device> m_speaker;
optional_shared_ptr<UINT8> m_p_videoram;
bool m_rv;
UINT8 m_term_status;
UINT8 m_llc1_key;
private:
UINT8 m_porta;
UINT8 m_term_data;
public:
DECLARE_DRIVER_INIT(llc2);
DECLARE_DRIVER_INIT(llc1);
virtual void video_start();
DECLARE_MACHINE_START(llc1);
DECLARE_MACHINE_RESET(llc1);
DECLARE_MACHINE_RESET(llc2);
UINT32 screen_update_llc1(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
UINT32 screen_update_llc2(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
optional_device<ram_device> m_ram;
};
/*----------- defined in machine/llc.c -----------*/
extern const z80pio_interface llc1_z80pio1_intf;
extern const z80pio_interface llc1_z80pio2_intf;
extern const z80pio_interface llc2_z80pio1_intf;
extern const z80pio_interface llc2_z80pio2_intf;
extern const z80ctc_interface llc1_ctc_intf;
extern const z80ctc_interface llc2_ctc_intf;
#endif
|