summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/vga.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/vga.h')
-rw-r--r--src/devices/bus/isa/vga.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/devices/bus/isa/vga.h b/src/devices/bus/isa/vga.h
new file mode 100644
index 00000000000..4317592b33b
--- /dev/null
+++ b/src/devices/bus/isa/vga.h
@@ -0,0 +1,43 @@
+// license:BSD-3-Clause
+// copyright-holders:Barry Rodewald
+#pragma once
+
+#ifndef __ISA_VGA_H__
+#define __ISA_VGA_H__
+
+#include "emu.h"
+#include "isa.h"
+#include "video/pc_vga.h"
+
+//**************************************************************************
+// TYPE DEFINITIONS
+//**************************************************************************
+
+// ======================> isa8_vga_device
+
+class isa8_vga_device :
+ public device_t,
+ public device_isa8_card_interface
+{
+public:
+ // construction/destruction
+ isa8_vga_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:
+ vga_device *m_vga;
+};
+
+
+// device type definition
+extern const device_type ISA8_VGA;
+
+#endif /* __ISA_VGA_H__ */