summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/bfm_adr2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/bfm_adr2.cpp')
-rw-r--r--src/mame/video/bfm_adr2.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/video/bfm_adr2.cpp b/src/mame/video/bfm_adr2.cpp
index e9eec8e5a0d..cbc01713fdf 100644
--- a/src/mame/video/bfm_adr2.cpp
+++ b/src/mame/video/bfm_adr2.cpp
@@ -524,21 +524,21 @@ void bfm_adder2_device::adder2_decode_char_roms()
void bfm_adder2_device::adder2_memmap(address_map &map)
{
- map(0x0000, 0x0000).w(this, FUNC(bfm_adder2_device::adder2_screen_page_w)); // screen access/display select
+ map(0x0000, 0x0000).w(FUNC(bfm_adder2_device::adder2_screen_page_w)); // screen access/display select
map(0x0000, 0x7FFF).bankr("bank2"); // 8k paged ROM (4 pages)
- map(0x8000, 0x917F).rw(this, FUNC(bfm_adder2_device::screen_ram_r), FUNC(bfm_adder2_device::screen_ram_w));
- map(0x9180, 0x9FFF).rw(this, FUNC(bfm_adder2_device::normal_ram_r), FUNC(bfm_adder2_device::normal_ram_w));
+ map(0x8000, 0x917F).rw(FUNC(bfm_adder2_device::screen_ram_r), FUNC(bfm_adder2_device::screen_ram_w));
+ map(0x9180, 0x9FFF).rw(FUNC(bfm_adder2_device::normal_ram_r), FUNC(bfm_adder2_device::normal_ram_w));
- map(0xC000, 0xC000).w(this, FUNC(bfm_adder2_device::adder2_rom_page_w)); // ROM page select
- map(0xC001, 0xC001).w(this, FUNC(bfm_adder2_device::adder2_c001_w)); // ??
+ map(0xC000, 0xC000).w(FUNC(bfm_adder2_device::adder2_rom_page_w)); // ROM page select
+ map(0xC001, 0xC001).w(FUNC(bfm_adder2_device::adder2_c001_w)); // ??
- map(0xC101, 0xC101).rw(this, FUNC(bfm_adder2_device::adder2_vbl_ctrl_r), FUNC(bfm_adder2_device::adder2_vbl_ctrl_w));
- map(0xC103, 0xC103).r(this, FUNC(bfm_adder2_device::adder2_irq_r)); // IRQ latch read
+ map(0xC101, 0xC101).rw(FUNC(bfm_adder2_device::adder2_vbl_ctrl_r), FUNC(bfm_adder2_device::adder2_vbl_ctrl_w));
+ map(0xC103, 0xC103).r(FUNC(bfm_adder2_device::adder2_irq_r)); // IRQ latch read
// MC6850 compatible uart connected to main (scorpion2) board ///////////////////////////////////////
- map(0xC200, 0xC200).rw(this, FUNC(bfm_adder2_device::adder2_uart_ctrl_r), FUNC(bfm_adder2_device::adder2_uart_ctrl_w)); // 6850 compatible uart control reg
- map(0xC201, 0xC201).rw(this, FUNC(bfm_adder2_device::adder2_uart_rx_r), FUNC(bfm_adder2_device::adder2_uart_tx_w)); // 6850 compatible uart data reg
+ map(0xC200, 0xC200).rw(FUNC(bfm_adder2_device::adder2_uart_ctrl_r), FUNC(bfm_adder2_device::adder2_uart_ctrl_w)); // 6850 compatible uart control reg
+ map(0xC201, 0xC201).rw(FUNC(bfm_adder2_device::adder2_uart_rx_r), FUNC(bfm_adder2_device::adder2_uart_tx_w)); // 6850 compatible uart data reg
map(0xE000, 0xFFFF).rom().region(":adder2", 0xE000); // 8k ROM
}