diff --git a/InstructionSets/M68k/Executor.hpp b/InstructionSets/M68k/Executor.hpp index 133343eaf..209485ab8 100644 --- a/InstructionSets/M68k/Executor.hpp +++ b/InstructionSets/M68k/Executor.hpp @@ -48,8 +48,9 @@ template class Executor: public NullFlowContr void run_for_instructions(int); /// Call this at any time to interrupt processing with a bus error; - /// the function code and address must be provided. - void signal_bus_error(FunctionCode, uint32_t address); + /// the function code and address must be provided. Internally + /// this will raise a C++ exception, and therefore doesn't return. + [[noreturn]] void signal_bus_error(FunctionCode, uint32_t address); // Flow control; Cf. Perform.hpp. template void raise_exception(int);