summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/pc_vga_matrox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/pc_vga_matrox.cpp')
-rw-r--r--src/devices/video/pc_vga_matrox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/pc_vga_matrox.cpp b/src/devices/video/pc_vga_matrox.cpp
index a5fe8bca111..8b20730e6e4 100644
--- a/src/devices/video/pc_vga_matrox.cpp
+++ b/src/devices/video/pc_vga_matrox.cpp
@@ -234,13 +234,13 @@ void matrox_vga_device::ramdac_ext_map(address_map &map)
u8 matrox_vga_device::ramdac_ext_indexed_r()
{
// Unclear from the docs, according to usage seems to be the write index with no autoincrement
-// logerror("RAMDAC ext read [%02x]\n", vga.dac.write_index);
+// logerror("RAMDAC ext read [%02x]\n", vga.dac.write_index);
return space(EXT_REG + 1).read_byte(vga.dac.write_index);
}
void matrox_vga_device::ramdac_ext_indexed_w(offs_t offset, u8 data)
{
-// logerror("RAMDAC ext [%02x] %02x\n", vga.dac.write_index, data);
+// logerror("RAMDAC ext [%02x] %02x\n", vga.dac.write_index, data);
space(EXT_REG + 1).write_byte(vga.dac.write_index, data);
}