splitSelectAdderAlgorithmSingleBlock static method

List<int> splitSelectAdderAlgorithmSingleBlock(
  1. int adderWidth
)

Adder ripple-carry block size computation algorithm. Generates only one carry-select block Return list of carry-ripple block sizes starting from the LSB connected one. adderWidth is a whole width of adder.

Implementation

static List<int> splitSelectAdderAlgorithmSingleBlock(int adderWidth) {
  final splitData = <int>[adderWidth];
  return splitData;
}