diff options
author | 2017-06-28 17:22:36 +0200 | |
---|---|---|
committer | 2017-07-03 08:03:57 +0200 | |
commit | cb1930f6e6a6b460577f01207888eab402469e9f (patch) | |
tree | 8ba301ba20e7c13b8643424aa7ce25a1efc99f05 /src/devices/cpu/i86/i286.cpp | |
parent | 5945fba012ae4758c6e2b18cdecef145699d2da3 (diff) |
Rename AS_DECRYPTED_OPCODES to AS_OPCODES [O. Galibert]
Diffstat (limited to 'src/devices/cpu/i86/i286.cpp')
-rw-r--r-- | src/devices/cpu/i86/i286.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/i86/i286.cpp b/src/devices/cpu/i86/i286.cpp index f871a8c17cd..2a2b8d5d1bb 100644 --- a/src/devices/cpu/i86/i286.cpp +++ b/src/devices/cpu/i86/i286.cpp @@ -288,7 +288,7 @@ const address_space_config *i80286_cpu_device::memory_space_config(address_space { case AS_PROGRAM: return &m_program_config; case AS_IO: return &m_io_config; - case AS_DECRYPTED_OPCODES: return has_configured_map(AS_DECRYPTED_OPCODES) ? &m_opcodes_config : nullptr; + case AS_OPCODES: return has_configured_map(AS_OPCODES) ? &m_opcodes_config : nullptr; default: return nullptr; } } |