summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms9900/tms9900.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/tms9900/tms9900.cpp')
-rw-r--r--src/devices/cpu/tms9900/tms9900.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/tms9900/tms9900.cpp b/src/devices/cpu/tms9900/tms9900.cpp
index c2ef748a925..17a0ed02b8e 100644
--- a/src/devices/cpu/tms9900/tms9900.cpp
+++ b/src/devices/cpu/tms9900/tms9900.cpp
@@ -2765,7 +2765,7 @@ void tms99xx_device::alu_int()
/*
The minimum number of cycles applies to a command like STWP R0.
*/
-uint32_t tms99xx_device::execute_min_cycles() const
+uint32_t tms99xx_device::execute_min_cycles() const noexcept
{
return 8;
}
@@ -2774,12 +2774,12 @@ uint32_t tms99xx_device::execute_min_cycles() const
The maximum number of cycles applies to a DIV command, depending on the
data to be divided, and the mode of adressing.
*/
-uint32_t tms99xx_device::execute_max_cycles() const
+uint32_t tms99xx_device::execute_max_cycles() const noexcept
{
return 124;
}
-uint32_t tms99xx_device::execute_input_lines() const
+uint32_t tms99xx_device::execute_input_lines() const noexcept
{
return 2;
}