blob: ddd36edae40fdcdd1e81f3b9747f0bc3d0bee3a7 (
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
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
#ifndef GF7600GS_H
#define GF7600GS_H
#include "machine/pci.h"
#define MCFG_GEFORCE_7600GS_ADD(_tag, _subdevice_id) \
MCFG_AGP_DEVICE_ADD(_tag, GEFORCE_7600GS, 0x10de02e1, 0xa1, _subdevice_id)
class geforce_7600gs_device : public pci_device {
public:
geforce_7600gs_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
protected:
virtual void device_start() override;
virtual void device_reset() override;
private:
DECLARE_ADDRESS_MAP(map1, 32);
DECLARE_ADDRESS_MAP(map2, 32);
DECLARE_ADDRESS_MAP(map3, 32);
};
extern const device_type GEFORCE_7600GS;
#endif
|