diff --git a/InstructionSets/M68k/Implementation/PerformImplementation.hpp b/InstructionSets/M68k/Implementation/PerformImplementation.hpp index fca167125..4d0ff071e 100644 --- a/InstructionSets/M68k/Implementation/PerformImplementation.hpp +++ b/InstructionSets/M68k/Implementation/PerformImplementation.hpp @@ -888,29 +888,29 @@ template < Primitive::set_neg_zero(src.w, status); break; - case Operation::ASLb: Primitive::shift(src.l, dest.b, status, flow_controller); break; - case Operation::ASLw: Primitive::shift(src.l, dest.w, status, flow_controller); break; - case Operation::ASLl: Primitive::shift(src.l, dest.l, status, flow_controller); break; + case Operation::ASLb: Primitive::shift(src.l, dest.b, status, flow_controller); break; + case Operation::ASLw: Primitive::shift(src.l, dest.w, status, flow_controller); break; + case Operation::ASLl: Primitive::shift(src.l, dest.l, status, flow_controller); break; - case Operation::ASRb: Primitive::shift(src.l, dest.b, status, flow_controller); break; - case Operation::ASRw: Primitive::shift(src.l, dest.w, status, flow_controller); break; - case Operation::ASRl: Primitive::shift(src.l, dest.l, status, flow_controller); break; + case Operation::ASRb: Primitive::shift(src.l, dest.b, status, flow_controller); break; + case Operation::ASRw: Primitive::shift(src.l, dest.w, status, flow_controller); break; + case Operation::ASRl: Primitive::shift(src.l, dest.l, status, flow_controller); break; - case Operation::LSLb: Primitive::shift(src.l, dest.b, status, flow_controller); break; - case Operation::LSLw: Primitive::shift(src.l, dest.w, status, flow_controller); break; - case Operation::LSLl: Primitive::shift(src.l, dest.l, status, flow_controller); break; + case Operation::LSLb: Primitive::shift(src.l, dest.b, status, flow_controller); break; + case Operation::LSLw: Primitive::shift(src.l, dest.w, status, flow_controller); break; + case Operation::LSLl: Primitive::shift(src.l, dest.l, status, flow_controller); break; - case Operation::LSRb: Primitive::shift(src.l, dest.b, status, flow_controller); break; - case Operation::LSRw: Primitive::shift(src.l, dest.w, status, flow_controller); break; - case Operation::LSRl: Primitive::shift(src.l, dest.l, status, flow_controller); break; + case Operation::LSRb: Primitive::shift(src.l, dest.b, status, flow_controller); break; + case Operation::LSRw: Primitive::shift(src.l, dest.w, status, flow_controller); break; + case Operation::LSRl: Primitive::shift(src.l, dest.l, status, flow_controller); break; - case Operation::ROLb: Primitive::rotate(src.l, dest.b, status, flow_controller); break; - case Operation::ROLw: Primitive::rotate(src.l, dest.w, status, flow_controller); break; - case Operation::ROLl: Primitive::rotate(src.l, dest.l, status, flow_controller); break; + case Operation::ROLb: Primitive::rotate(src.l, dest.b, status, flow_controller); break; + case Operation::ROLw: Primitive::rotate(src.l, dest.w, status, flow_controller); break; + case Operation::ROLl: Primitive::rotate(src.l, dest.l, status, flow_controller); break; - case Operation::RORb: Primitive::rotate(src.l, dest.b, status, flow_controller); break; - case Operation::RORw: Primitive::rotate(src.l, dest.w, status, flow_controller); break; - case Operation::RORl: Primitive::rotate(src.l, dest.l, status, flow_controller); break; + case Operation::RORb: Primitive::rotate(src.l, dest.b, status, flow_controller); break; + case Operation::RORw: Primitive::rotate(src.l, dest.w, status, flow_controller); break; + case Operation::RORl: Primitive::rotate(src.l, dest.l, status, flow_controller); break; case Operation::ROXLb: Primitive::rox(src.l, dest.b, status, flow_controller); break; case Operation::ROXLw: Primitive::rox(src.l, dest.w, status, flow_controller); break;