diff options
author | 2014-04-23 08:21:53 +0000 | |
---|---|---|
committer | 2014-04-23 08:21:53 +0000 | |
commit | f4b64a1b5b6f238729ffe4f91b65539efe104311 (patch) | |
tree | 8fe20b7a1f48e2938afd273baf8ce3c0e060fd2e /src | |
parent | 9ca8643f32af5e2ad6f78fffa3fa3d3b17abf4b6 (diff) |
inder_vid.c - Mirrored TMS34010 RAM at 0x7fc00000 and 0xffc00000. With the previous TMS34010 change, this fixes the window clipping issues at y=0 [Phil Bennett]
Diffstat (limited to 'src')
-rw-r--r-- | src/mame/machine/inder_vid.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mame/machine/inder_vid.c b/src/mame/machine/inder_vid.c index 3d4950c2d75..3a68cb6884d 100644 --- a/src/mame/machine/inder_vid.c +++ b/src/mame/machine/inder_vid.c @@ -28,9 +28,8 @@ static ADDRESS_MAP_START( megaphx_tms_map, AS_PROGRAM, 16, inder_vid_device ) AM_RANGE(0x04000010, 0x0400001f) AM_DEVREADWRITE8("ramdac",ramdac_device,pal_r,pal_w,0x00ff) AM_RANGE(0x04000030, 0x0400003f) AM_DEVWRITE8("ramdac",ramdac_device,index_r_w,0x00ff) AM_RANGE(0x04000090, 0x0400009f) AM_WRITENOP - + AM_RANGE(0x7fc00000, 0x7fffffff) AM_RAM AM_MIRROR(0x80000000) AM_RANGE(0xc0000000, 0xc00001ff) AM_DEVREADWRITE("tms", tms34010_device, io_register_r, io_register_w) - AM_RANGE(0xffc00000, 0xffffffff) AM_RAM ADDRESS_MAP_END |