summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video/gf6800gt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/video/gf6800gt.h')
-rw-r--r--src/emu/video/gf6800gt.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/emu/video/gf6800gt.h b/src/emu/video/gf6800gt.h
deleted file mode 100644
index cdd6a3bc184..00000000000
--- a/src/emu/video/gf6800gt.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef GF6800GT_H
-#define GF6800GT_H
-
-#include "machine/pci.h"
-
-#define MCFG_GEFORCE_6800GT_ADD(_tag, _subdevice_id) \
- MCFG_AGP_DEVICE_ADD(_tag, GEFORCE_6800GT, 0x10de00f9, 0xa1, _subdevice_id)
-
-class geforce_6800gt_device : public pci_device {
-public:
- geforce_6800gt_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
-
-protected:
- virtual void device_start();
- virtual void device_reset();
-
-private:
- DECLARE_ADDRESS_MAP(map1, 32);
- DECLARE_ADDRESS_MAP(map2, 32);
- DECLARE_ADDRESS_MAP(map3, 32);
-};
-
-extern const device_type GEFORCE_6800GT;
-
-#endif