summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms9900/tms9995.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tms9900/tms9995.cpp')
-rw-r--r--src/devices/cpu/tms9900/tms9995.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/tms9900/tms9995.cpp b/src/devices/cpu/tms9900/tms9995.cpp
index 2c24f7e7697..c192f2a1b53 100644
--- a/src/devices/cpu/tms9900/tms9995.cpp
+++ b/src/devices/cpu/tms9900/tms9995.cpp
@@ -3481,7 +3481,7 @@ void tms9995_device::alu_int()
The minimum number of cycles applies to a command like SETO R0 with
R0 in on-chip RAM.
*/
-uint32_t tms9995_device::execute_min_cycles() const
+uint32_t tms9995_device::execute_min_cycles() const noexcept
{
return 3;
}
@@ -3490,12 +3490,12 @@ uint32_t tms9995_device::execute_min_cycles() const
The maximum number of cycles applies to a STCR command with the destination
operand off-chip and 16 bits of transfer.
*/
-uint32_t tms9995_device::execute_max_cycles() const
+uint32_t tms9995_device::execute_max_cycles() const noexcept
{
return 47;
}
-uint32_t tms9995_device::execute_input_lines() const
+uint32_t tms9995_device::execute_input_lines() const noexcept
{
return 2;
}