summaryrefslogtreecommitdiffstats
path: root/src/emu/debug/debugcmd.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-12-14 22:09:38 -0500
committer AJR <ajrhacker@users.noreply.github.com>2017-12-14 22:09:38 -0500
commit72ba280d7dd9614ed01ac0cbf7dff2f1c8b51e78 (patch)
treeacd28e0d78e6c7916cf4b06c252867756dcefe53 /src/emu/debug/debugcmd.cpp
parentcc03217ca084a65ca898281b7219fb0b0505f826 (diff)
Eliminate remaining uses of address_space::machine() outside of emumem (nw)
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
-rw-r--r--src/emu/debug/debugcmd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp
index 6c1db21dba6..3c75febe3bc 100644
--- a/src/emu/debug/debugcmd.cpp
+++ b/src/emu/debug/debugcmd.cpp
@@ -1710,7 +1710,7 @@ void debugger_commands::execute_save(int ref, const std::vector<std::string> &pa
}
/* now write the data out */
- auto dis = space->machine().disable_side_effect();
+ auto dis = space->device().machine().disable_side_effect();
switch (space->addr_shift())
{
case -3:
@@ -1936,7 +1936,7 @@ void debugger_commands::execute_dump(int ref, const std::vector<std::string> &pa
else if(shift < 0)
width >>= -shift;
- auto dis = space->machine().disable_side_effect();
+ auto dis = space->device().machine().disable_side_effect();
bool be = space->endianness() == ENDIANNESS_BIG;
for (offs_t i = offset; i <= endoffset; i += rowsize)