diff --git a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp index 921b182b9..4a6265414 100644 --- a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp +++ b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp @@ -2539,8 +2539,8 @@ template void ProcessorBase::did_muls(IntT) { // TODO: calculate cost. } -void ProcessorBase::did_shift(int) { - // TODO: calculate cost. +void ProcessorBase::did_shift(int bits_shifted) { + dynamic_instruction_length_ = bits_shifted; } template void ProcessorBase::raise_exception(int vector) {