diff options
author | 2014-03-07 13:35:21 +0000 | |
---|---|---|
committer | 2014-03-07 13:35:21 +0000 | |
commit | 250dac1722b9f9f2ff602b4e40c2cd63cd97e504 (patch) | |
tree | f49e429b7d123f381c09b5b8e457860af49e48c8 /src/emu/bus/isa/svga_cirrus.h | |
parent | a190ceefc53d10fcbb8b2a3b8fc7749975b7a987 (diff) |
Shuffle ISA and some more PC related devices around (nw)
Diffstat (limited to 'src/emu/bus/isa/svga_cirrus.h')
-rw-r--r-- | src/emu/bus/isa/svga_cirrus.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/emu/bus/isa/svga_cirrus.h b/src/emu/bus/isa/svga_cirrus.h new file mode 100644 index 00000000000..099c00eeb6c --- /dev/null +++ b/src/emu/bus/isa/svga_cirrus.h @@ -0,0 +1,41 @@ +#pragma once + +#ifndef __ISA_SVGA_CIRRUS_H__ +#define __ISA_SVGA_CIRRUS_H__ + +#include "emu.h" +#include "isa.h" +#include "video/pc_vga.h" + +//************************************************************************** +// TYPE DEFINITIONS +//************************************************************************** + +// ======================> isa8_vga_device + +class isa8_svga_cirrus_device : + public device_t, + public device_isa8_card_interface +{ +public: + // construction/destruction + isa8_svga_cirrus_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + + // optional information overrides + virtual machine_config_constructor device_mconfig_additions() const; + virtual const rom_entry *device_rom_region() const; + + DECLARE_READ8_MEMBER(input_port_0_r); +protected: + // device-level overrides + virtual void device_start(); + virtual void device_reset(); +private: + cirrus_vga_device *m_vga; +}; + + +// device type definition +extern const device_type ISA8_SVGA_CIRRUS; + +#endif /* __ISA_VGA_H__ */ |