diff options
author | 2011-03-29 16:31:32 +0000 | |
---|---|---|
committer | 2011-03-29 16:31:32 +0000 | |
commit | 17e077da3a754ac217e624773e407c5779a1cb1f (patch) | |
tree | 562e86fbd87e4d27afbb0573301c61c2311f7a4a /src/emu/memory.h | |
parent | 2ad50720237fdd19cf5ab45b8cb6bb21119c00b8 (diff) |
Remove redundant item cpu from address_space, in favor of
space->device().
S: space->cpu->
R: space->device\(\)\.
S: space->cpu
R: \&space->device\(\)
Diffstat (limited to 'src/emu/memory.h')
-rw-r--r-- | src/emu/memory.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/emu/memory.h b/src/emu/memory.h index cf5ef7cad54..6d81349d7da 100644 --- a/src/emu/memory.h +++ b/src/emu/memory.h @@ -575,10 +575,6 @@ private: memory_bank &bank_find_or_allocate(const char *tag, offs_t addrstart, offs_t addrend, offs_t addrmask, offs_t addrmirror, read_or_write readorwrite); address_map_entry *block_assign_intersecting(offs_t bytestart, offs_t byteend, UINT8 *base); -public: - // public state (eventually will go away) - device_t * cpu; // kept for backwards compatibility - protected: // private state address_space * m_next; // next address space in the global list |