diff options
author | 2017-07-01 12:11:28 +0200 | |
---|---|---|
committer | 2017-07-03 08:03:57 +0200 | |
commit | cbbbd07484c736eae2069b294ec666f231e64bff (patch) | |
tree | b94a690f0ab10635eb6d11837425744208c7e8a4 /src/emu/divtlb.cpp | |
parent | cb1930f6e6a6b460577f01207888eab402469e9f (diff) |
dimemory: Lift the cap on the number of address spaces per device [O. Galibert]
Diffstat (limited to 'src/emu/divtlb.cpp')
-rw-r--r-- | src/emu/divtlb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/divtlb.cpp b/src/emu/divtlb.cpp index b629ec81007..0689bb9c68a 100644 --- a/src/emu/divtlb.cpp +++ b/src/emu/divtlb.cpp @@ -29,7 +29,7 @@ // device_vtlb_interface - constructor //------------------------------------------------- -device_vtlb_interface::device_vtlb_interface(const machine_config &mconfig, device_t &device, address_spacenum space) +device_vtlb_interface::device_vtlb_interface(const machine_config &mconfig, device_t &device, int space) : device_interface(device, "vtlb"), m_space(space), m_dynamic(0), |