From cbbbd07484c736eae2069b294ec666f231e64bff Mon Sep 17 00:00:00 2001 From: Olivier Galibert Date: Sat, 1 Jul 2017 12:11:28 +0200 Subject: dimemory: Lift the cap on the number of address spaces per device [O. Galibert] --- src/devices/cpu/hmcs40/hmcs40.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/devices/cpu/hmcs40/hmcs40.h') diff --git a/src/devices/cpu/hmcs40/hmcs40.h b/src/devices/cpu/hmcs40/hmcs40.h index af933a999a7..77004de1e24 100644 --- a/src/devices/cpu/hmcs40/hmcs40.h +++ b/src/devices/cpu/hmcs40/hmcs40.h @@ -155,7 +155,7 @@ protected: virtual void execute_run() override; // device_memory_interface overrides - virtual const address_space_config *memory_space_config(address_spacenum spacenum = AS_0) const override { return(spacenum == AS_PROGRAM) ? &m_program_config : ((spacenum == AS_DATA) ? &m_data_config : nullptr); } + virtual std::vector> memory_space_config() const override; // device_disasm_interface overrides virtual u32 disasm_min_opcode_bytes() const override { return 2; } -- cgit v1.2.3