summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nes/batlab.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/nes/batlab.cpp')
-rw-r--r--src/devices/bus/nes/batlab.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/nes/batlab.cpp b/src/devices/bus/nes/batlab.cpp
index cc39fb95466..7f11696134d 100644
--- a/src/devices/bus/nes/batlab.cpp
+++ b/src/devices/bus/nes/batlab.cpp
@@ -188,7 +188,7 @@ u8 nes_batmap_srrx_device::read_dpcm()
u8 nes_batmap_srrx_device::read_l(offs_t offset)
{
-// LOG_MMC(("batmap_srrx read_l, offset: %04x", offset));
+// LOG_MMC(("batmap_srrx read_l, offset: %04x", offset));
offset += 0x100;
switch (offset & 0x1800)
@@ -204,7 +204,7 @@ u8 nes_batmap_srrx_device::read_l(offs_t offset)
u8 nes_batmap_srrx_device::read_m(offs_t offset)
{
-// LOG_MMC(("batmap_srrx read_m, offset: %04x", offset));
+// LOG_MMC(("batmap_srrx read_m, offset: %04x", offset));
return m_prg[(m_reg * 0x2000 + offset) & (m_prg_size - 1)];
}