blob: 3ae2089f3b48bb656972e2a06c60454127c2add1 (
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
|
// license:BSD-3-Clause
// copyright-holders:Barry Rodewald
#pragma once
#ifndef __ISA_SVGA_ET4K_H__
#define __ISA_SVGA_ET4K_H__
#include "emu.h"
#include "isa.h"
#include "video/pc_vga.h"
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// ======================> isa8_vga_device
class isa8_svga_et4k_device :
public device_t,
public device_isa8_card_interface
{
public:
// construction/destruction
isa8_svga_et4k_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
// optional information overrides
virtual machine_config_constructor device_mconfig_additions() const override;
virtual const rom_entry *device_rom_region() const override;
DECLARE_READ8_MEMBER(input_port_0_r);
protected:
// device-level overrides
virtual void device_start() override;
virtual void device_reset() override;
private:
tseng_vga_device *m_vga;
};
// device type definition
extern const device_type ISA8_SVGA_ET4K;
#endif /* __ISA_SVGA_ET4K_H__ */
|