summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/tmc600.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-06-16 18:11:46 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-06-16 18:11:46 +0200
commitda639365600fab4edad4b4ede11333cfd5da218a (patch)
tree1287207f24714054cecaf17094aa1de3cde615e6 /src/mame/video/tmc600.cpp
parentb681607a543255a237036cadb0931a41444ede3d (diff)
drivers starting with t, u, v, w and most of drivers starting with x: removed read* and write* macros (nw)
Diffstat (limited to 'src/mame/video/tmc600.cpp')
-rw-r--r--src/mame/video/tmc600.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/tmc600.cpp b/src/mame/video/tmc600.cpp
index a2b79602b95..c87fee27b5f 100644
--- a/src/mame/video/tmc600.cpp
+++ b/src/mame/video/tmc600.cpp
@@ -3,12 +3,12 @@
#include "emu.h"
#include "includes/tmc600.h"
-WRITE8_MEMBER( tmc600_state::vismac_register_w )
+void tmc600_state::vismac_register_w(uint8_t data)
{
m_vismac_reg_latch = data >> 4;
}
-WRITE8_MEMBER( tmc600_state::vismac_data_w )
+void tmc600_state::vismac_data_w(uint8_t data)
{
uint16_t ma = m_maincpu->get_memory_address();
@@ -36,7 +36,7 @@ uint8_t tmc600_state::get_color(uint16_t pma)
return color;
}
-WRITE8_MEMBER( tmc600_state::page_ram_w )
+void tmc600_state::page_ram_w(offs_t offset, uint8_t data)
{
m_page_ram[offset] = data;
m_color_ram[offset] = m_vismac_color_latch;