summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/pockstat.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pockstat.cpp')
-rw-r--r--src/mame/drivers/pockstat.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mame/drivers/pockstat.cpp b/src/mame/drivers/pockstat.cpp
index 90ef5d4f83a..52c8c6b767e 100644
--- a/src/mame/drivers/pockstat.cpp
+++ b/src/mame/drivers/pockstat.cpp
@@ -844,18 +844,18 @@ WRITE32_MEMBER(pockstat_state::ps_audio_w)
void pockstat_state::pockstat_mem(address_map &map)
{
map(0x00000000, 0x000007ff).ram();
- map(0x02000000, 0x02ffffff).r(this, FUNC(pockstat_state::ps_rombank_r));
+ map(0x02000000, 0x02ffffff).r(FUNC(pockstat_state::ps_rombank_r));
map(0x04000000, 0x04003fff).rom().region("maincpu", 0);
- map(0x06000000, 0x06000307).rw(this, FUNC(pockstat_state::ps_ftlb_r), FUNC(pockstat_state::ps_ftlb_w));
- map(0x08000000, 0x0801ffff).rw(this, FUNC(pockstat_state::ps_flash_r), FUNC(pockstat_state::ps_flash_w));
- map(0x0a000000, 0x0a000013).rw(this, FUNC(pockstat_state::ps_intc_r), FUNC(pockstat_state::ps_intc_w));
- map(0x0a800000, 0x0a80002b).rw(this, FUNC(pockstat_state::ps_timer_r), FUNC(pockstat_state::ps_timer_w));
- map(0x0b000000, 0x0b000007).rw(this, FUNC(pockstat_state::ps_clock_r), FUNC(pockstat_state::ps_clock_w));
- map(0x0b800000, 0x0b80000f).rw(this, FUNC(pockstat_state::ps_rtc_r), FUNC(pockstat_state::ps_rtc_w));
- map(0x0d000000, 0x0d000003).rw(this, FUNC(pockstat_state::ps_lcd_r), FUNC(pockstat_state::ps_lcd_w));
+ map(0x06000000, 0x06000307).rw(FUNC(pockstat_state::ps_ftlb_r), FUNC(pockstat_state::ps_ftlb_w));
+ map(0x08000000, 0x0801ffff).rw(FUNC(pockstat_state::ps_flash_r), FUNC(pockstat_state::ps_flash_w));
+ map(0x0a000000, 0x0a000013).rw(FUNC(pockstat_state::ps_intc_r), FUNC(pockstat_state::ps_intc_w));
+ map(0x0a800000, 0x0a80002b).rw(FUNC(pockstat_state::ps_timer_r), FUNC(pockstat_state::ps_timer_w));
+ map(0x0b000000, 0x0b000007).rw(FUNC(pockstat_state::ps_clock_r), FUNC(pockstat_state::ps_clock_w));
+ map(0x0b800000, 0x0b80000f).rw(FUNC(pockstat_state::ps_rtc_r), FUNC(pockstat_state::ps_rtc_w));
+ map(0x0d000000, 0x0d000003).rw(FUNC(pockstat_state::ps_lcd_r), FUNC(pockstat_state::ps_lcd_w));
map(0x0d000100, 0x0d00017f).ram().share("lcd_buffer");
- map(0x0d80000c, 0x0d80000f).rw(this, FUNC(pockstat_state::ps_audio_r), FUNC(pockstat_state::ps_audio_w));
- map(0x0d800014, 0x0d800015).w("dac", FUNC(dac_word_interface::write));
+ map(0x0d80000c, 0x0d80000f).rw(FUNC(pockstat_state::ps_audio_r), FUNC(pockstat_state::ps_audio_w));
+ map(0x0d800014, 0x0d800015).w("dac", FUNC(dac_word_interface::data_w));
}
/* Input ports */