all dynamic ranges from 8 to 38 bits (i.e., for 3 ≤n≤ 13). The results obtained suggest that, compared to the best of the state-of-the-art converters, at least one of two versions of our converters is superior with respect to area and power consumption, for all dynamic ranges co...
### answer: it passes the ambguity directly down to verilog :P # if b is 8 bits and a is 16 bits, # b = a gets the LSBs of a, e.g. b = a[7:0] if you do b = a # if b is 32 bits and 1 as 16 bits, # b = a zero-extends a, eg. b[15:0] = a[15:0] ...