diff options
author | 2023-03-18 21:25:40 +0100 | |
---|---|---|
committer | 2023-03-18 21:27:43 +0100 | |
commit | e2d60b0acb410327ed487892657f374e07ac70fb (patch) | |
tree | 53aa7c1aa8a29b5ce78783693e40b6875bb0c76e /src/devices/cpu/clipper/clipper.h | |
parent | 02fe685a838446c1433002be520ebc67b65c0b58 (diff) |
dimemory: Add the target address space to translate, wrap the constants
divtlb: Wrap the constants
Diffstat (limited to 'src/devices/cpu/clipper/clipper.h')
-rw-r--r-- | src/devices/cpu/clipper/clipper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/clipper/clipper.h b/src/devices/cpu/clipper/clipper.h index 3e78a5fdfff..44741234df1 100644 --- a/src/devices/cpu/clipper/clipper.h +++ b/src/devices/cpu/clipper/clipper.h @@ -163,7 +163,7 @@ protected: // device_memory_interface overrides virtual space_config_vector memory_space_config() const override; - virtual bool memory_translate(int spacenum, int intention, offs_t &address) override; + virtual bool memory_translate(int spacenum, int intention, offs_t &address, address_space *&target_space) override; // device_state_interface overrides virtual void state_string_export(const device_state_entry &entry, std::string &str) const override; |