summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/k033906.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/k033906.h')
-rw-r--r--src/devices/machine/k033906.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/devices/machine/k033906.h b/src/devices/machine/k033906.h
index 21187ad0541..68b1e171ece 100644
--- a/src/devices/machine/k033906.h
+++ b/src/devices/machine/k033906.h
@@ -26,9 +26,11 @@ public:
k033906_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ void set_pciid(uint32_t pciid) { m_voodoo_pciid = pciid; }
+
u32 read(offs_t offset);
void write(offs_t offset, u32 data);
- DECLARE_WRITE_LINE_MEMBER(set_reg);
+ void set_reg(int state);
protected:
// device-level overrides
@@ -44,6 +46,7 @@ private:
/* i/o lines */
int m_reg_set; // 1 = access reg / 0 = access ram
+ uint32_t m_voodoo_pciid;
required_device<generic_voodoo_device> m_voodoo;