Skip to content

Commit

Permalink
cpu/tlcs900/tmp95c061.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
cuavas authored Sep 15, 2024
1 parent 0372f47 commit 23f16d2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/devices/cpu/tlcs900/tmp95c061.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,22 +78,22 @@ void tmp95c061_device::port_fc_w(uint8_t data)
m_port_function[P] = data;
}

template<>
void tmp95c061_device::port_w <tmp95c061_device::PORT_A> (uint8_t data)
template <>
void tmp95c061_device::port_w<tmp95c061_device::PORT_A>(uint8_t data)
{
m_port_latch[PORT_A] = data;
update_porta();
}

template<>
void tmp95c061_device::port_cr_w <tmp95c061_device::PORT_A> (uint8_t data)
template <>
void tmp95c061_device::port_cr_w<tmp95c061_device::PORT_A>(uint8_t data)
{
m_port_control[PORT_A] = data;
update_porta();
}

template<>
void tmp95c061_device::port_fc_w <tmp95c061_device::PORT_A> (uint8_t data)
template <>
void tmp95c061_device::port_fc_w<tmp95c061_device::PORT_A>(uint8_t data)
{
m_port_function[PORT_A] = data;
update_porta();
Expand Down

0 comments on commit 23f16d2

Please sign in to comment.