diff options
Diffstat (limited to 'src/devices/machine/sun4c_mmu.cpp')
| -rw-r--r-- | src/devices/machine/sun4c_mmu.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/devices/machine/sun4c_mmu.cpp b/src/devices/machine/sun4c_mmu.cpp index f5dfe643f4f..91686a42fdf 100644 --- a/src/devices/machine/sun4c_mmu.cpp +++ b/src/devices/machine/sun4c_mmu.cpp @@ -12,7 +12,6 @@ #include "cpu/sparc/sparc.h" #include "debug/debugcon.h" -#include "debug/debugcmd.h" #include "debugger.h" DEFINE_DEVICE_TYPE(SUN4_MMU, sun4_mmu_device, "sun4_mmu", "Sun 4 MMU") @@ -986,7 +985,7 @@ void sun4_mmu_base_device::l2p_command(const std::vector<std::string_view> ¶ { uint64_t addr, offset; - if (!machine().debugger().commands().validate_number_parameter(params[0], addr)) return; + if (!machine().debugger().console().validate_number_parameter(params[0], addr)) return; addr &= 0xffffffff; offset = addr >> 2; |
