diff options
author | 2008-07-28 16:22:20 +0000 | |
---|---|---|
committer | 2008-07-28 16:22:20 +0000 | |
commit | 4a6fc8d5e54de36eeeebd7263554e591d09b758c (patch) | |
tree | 381124ebd8ec469c3024b6d2dbd577dbe985e458 /src/emu/memory.h | |
parent | 86022ddde4078cde05999f5a8d7135116bc782cb (diff) |
Region classes go bye-bye.
Diffstat (limited to 'src/emu/memory.h')
-rw-r--r-- | src/emu/memory.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/emu/memory.h b/src/emu/memory.h index a17dfe9cee0..f8cfe0a7bac 100644 --- a/src/emu/memory.h +++ b/src/emu/memory.h @@ -225,9 +225,8 @@ struct _address_map_entry size_t * sizeptr; /* receives size of area in bytes (optional) */ UINT32 baseptroffs_plus1; /* offset of base pointer within driver_data, plus 1 */ UINT32 sizeptroffs_plus1; /* offset of size pointer within driver_data, plus 1 */ - UINT32 rgnclass; /* class of region containing the memory backing this entry */ - const char * rgntag; /* tag of region containing the memory backing this entry */ - offs_t rgnoffs; /* offset within the region */ + const char * region; /* tag of region containing the memory backing this entry */ + offs_t rgnoffs; /* offset within the region */ void * memory; /* pointer to memory backing this entry */ offs_t bytestart; /* byte-adjusted start address */ @@ -765,8 +764,8 @@ union _addrmap64_token TOKEN_UINT32_PACK3(ADDRMAP_TOKEN_READ_PORT, 8, 0, 8, 0, 8), \ TOKEN_STRING(_tag), -#define AM_REGION(_class, _tag, _offs) \ - TOKEN_UINT64_PACK3(ADDRMAP_TOKEN_REGION, 8, _class, 24, _offs, 32), \ +#define AM_REGION(_tag, _offs) \ + TOKEN_UINT64_PACK2(ADDRMAP_TOKEN_REGION, 8, _offs, 32), \ TOKEN_STRING(_tag), #define AM_SHARE(_index) \ |