summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tlcs900/900tbl.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tlcs900/900tbl.hxx')
-rw-r--r--src/devices/cpu/tlcs900/900tbl.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/tlcs900/900tbl.hxx b/src/devices/cpu/tlcs900/900tbl.hxx
index 44099216fb9..bd2efa0b96d 100644
--- a/src/devices/cpu/tlcs900/900tbl.hxx
+++ b/src/devices/cpu/tlcs900/900tbl.hxx
@@ -644,7 +644,7 @@ void tlcs900_device::ldcf8( uint8_t a, uint8_t b )
}
-void tlcs900_device::ldcf16( uint8_t a, uint8_t b )
+void tlcs900_device::ldcf16( uint8_t a, uint16_t b )
{
if ( b & ( 1 << ( a & 0x0f ) ) )
m_sr.b.l |= FLAG_CF;
@@ -662,7 +662,7 @@ void tlcs900_device::andcf8( uint8_t a, uint8_t b )
}
-void tlcs900_device::andcf16( uint8_t a, uint8_t b )
+void tlcs900_device::andcf16( uint8_t a, uint16_t b )
{
if ( ( b & ( 1 << ( a & 0x0f ) ) ) && ( m_sr.b.l & FLAG_CF ) )
m_sr.b.l |= FLAG_CF;
@@ -678,7 +678,7 @@ void tlcs900_device::orcf8( uint8_t a, uint8_t b )
}
-void tlcs900_device::orcf16( uint8_t a, uint8_t b )
+void tlcs900_device::orcf16( uint8_t a, uint16_t b )
{
if ( b & ( 1 << ( a & 0x0f ) ) )
m_sr.b.l |= FLAG_CF;
@@ -692,7 +692,7 @@ void tlcs900_device::xorcf8( uint8_t a, uint8_t b )
}
-void tlcs900_device::xorcf16( uint8_t a, uint8_t b )
+void tlcs900_device::xorcf16( uint8_t a, uint16_t b )
{
if ( b & ( 1 << ( a & 0x0f ) ) )
m_sr.b.l ^= FLAG_CF;