summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/wicat.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/wicat.cpp')
-rw-r--r--src/mame/drivers/wicat.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/wicat.cpp b/src/mame/drivers/wicat.cpp
index 54faa6c0cd1..6265293fa9a 100644
--- a/src/mame/drivers/wicat.cpp
+++ b/src/mame/drivers/wicat.cpp
@@ -202,8 +202,8 @@ void wicat_state::video_io(address_map &map)
void wicat_state::wd1000_mem(address_map &map)
{
- map(0x0000, 0x17ff).rom().region("wd3", 0x0000);
- map(0x1800, 0x1fff).noprw();
+ map(0x0000, 0x0bff).rom().region("wd3", 0x0000);
+ map(0x0c00, 0x0fff).noprw();
}
void wicat_state::wd1000_io(address_map &map)
@@ -584,13 +584,13 @@ WRITE8_MEMBER( wicat_state::vram_w )
READ8_MEMBER(wicat_state::video_dma_r)
{
- return m_videodma->read(space,offset/2);
+ return m_videodma->read(offset/2);
}
WRITE8_MEMBER(wicat_state::video_dma_w)
{
if(!(offset & 0x01))
- m_videodma->write(space,offset/2,data);
+ m_videodma->write(offset/2,data);
}
READ8_MEMBER(wicat_state::video_uart0_r)