diff options
author | 2022-06-16 12:47:52 +0200 | |
---|---|---|
committer | 2025-04-29 23:06:41 +0200 | |
commit | 45d4cd52a8194f2ef9e0383cfb2e2a35634af6ff (patch) | |
tree | 4e8d8fcb7382a5e9e0bce5ec59939bcfbe67155a /src/devices/machine/sun4c_mmu.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/machine/sun4c_mmu.h')
-rw-r--r-- | src/devices/machine/sun4c_mmu.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/sun4c_mmu.h b/src/devices/machine/sun4c_mmu.h index bd9b1201fbf..3ba13fbff97 100644 --- a/src/devices/machine/sun4c_mmu.h +++ b/src/devices/machine/sun4c_mmu.h @@ -20,7 +20,7 @@ class sun4_mmu_base_device : public device_t, public sparc_mmu_interface { public: - sun4_mmu_base_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock + sun4_mmu_base_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock , uint8_t ctx_mask, uint8_t pmeg_mask, uint32_t page_mask, uint32_t seg_entry_shift, uint32_t seg_entry_mask , uint32_t page_entry_mask, uint32_t cache_mask) : sun4_mmu_base_device(mconfig, type, tag, owner, clock) @@ -105,7 +105,7 @@ public: void hw_flush_all_w(uint32_t offset, uint32_t data, uint32_t mem_mask); protected: - sun4_mmu_base_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + sun4_mmu_base_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock); struct page_entry { @@ -225,13 +225,13 @@ protected: class sun4_mmu_device : public sun4_mmu_base_device { public: - sun4_mmu_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + sun4_mmu_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; class sun4c_mmu_device : public sun4_mmu_base_device { public: - sun4c_mmu_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + sun4c_mmu_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; DECLARE_DEVICE_TYPE(SUN4_MMU, sun4_mmu_device) |