RotateRightFixed constructor

RotateRightFixed(
  1. Logic original,
  2. int rotateAmount, {
  3. String name = 'rotate_fixed',
  4. bool reserveName = false,
  5. bool reserveDefinitionName = false,
  6. String? definitionName,
})

Rotates original by rotateAmount to the right.

Implementation

RotateRightFixed(Logic original, int rotateAmount,
    {super.name,
    super.reserveName,
    super.reserveDefinitionName,
    String? definitionName})
    : super(
          definitionName:
              definitionName ?? 'RotateRightFixed_W${original.width}',
          RotateDirection.right,
          original,
          rotateAmount);