diff options
author | 2012-03-31 13:39:09 +0000 | |
---|---|---|
committer | 2012-03-31 13:39:09 +0000 | |
commit | 2c6405939667eb6da61fee9e8c0a6e9218313b98 (patch) | |
tree | 77a8df4bd2675475c38f0d8a666c79c705f35055 /src/emu/video/h63484.c | |
parent | b5e7f4998b60effd62a2ad43db5e722dcb5dd1c3 (diff) |
MAME going modern part 1 (no whatsnew)
- Added 4th parameter to all address maps
- Added missing state classes
Diffstat (limited to 'src/emu/video/h63484.c')
-rw-r--r-- | src/emu/video/h63484.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/video/h63484.c b/src/emu/video/h63484.c index edacced60b6..8ba7d562ff8 100644 --- a/src/emu/video/h63484.c +++ b/src/emu/video/h63484.c @@ -15,7 +15,7 @@ #define FIFO_LOG 0 // default address map -static ADDRESS_MAP_START( h63484_vram, AS_0, 8 ) +static ADDRESS_MAP_START( h63484_vram, AS_0, 8, h63484_device ) AM_RANGE(0x00000, 0x7ffff) AM_RAM AM_RANGE(0x80000, 0xfffff) AM_NOP ADDRESS_MAP_END |