diff options
Diffstat (limited to 'src/devices/cpu/powerpc/ppc.h')
-rw-r--r-- | src/devices/cpu/powerpc/ppc.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/devices/cpu/powerpc/ppc.h b/src/devices/cpu/powerpc/ppc.h index 97c7ed631ae..5bf746ecd4d 100644 --- a/src/devices/cpu/powerpc/ppc.h +++ b/src/devices/cpu/powerpc/ppc.h @@ -490,8 +490,9 @@ protected: int m_buffered_dma_rate[4]; /* internal stuff */ - direct_read_data<0> *m_direct; - offs_t m_codexor; + std::function<u32 (offs_t)> m_pr32; + std::function<const void * (offs_t)> m_prptr; + uint32_t m_system_clock; uint32_t m_cpu_clock; uint64_t m_tb_zero_cycles; |