summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/n64.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/n64.h')
-rw-r--r--src/mame/video/n64.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mame/video/n64.h b/src/mame/video/n64.h
index f40717f3df7..2310ec8eb6d 100644
--- a/src/mame/video/n64.h
+++ b/src/mame/video/n64.h
@@ -167,6 +167,7 @@ public:
void disassemble(char* buffer);
void set_machine(running_machine& machine) { m_machine = &machine; }
+ void set_n64_periphs(n64_periphs* periphs) { m_n64_periphs = periphs; }
// CPU-visible registers
void set_start(uint32_t val) { m_start = val; }
@@ -335,6 +336,7 @@ private:
running_machine* m_machine;
uint32_t* m_rdram;
uint32_t* m_dmem;
+ n64_periphs* m_n64_periphs;
combine_modes_t m_combine;
bool m_pending_mode_block;