/// <summary> /// Constructs a new instance. /// </summary> /// <param name="numWords">number of input signals</param> /// <param name="wordWidth">width per input signal</param> public Concatenizer(int numWords, int wordWidth) { NumWords = numWords; WordWidth = wordWidth; TASite = new Transactor(this); }