Questions
- If we have a large dynamic range in our numbers, what are we better off using?
- Integers
- Fixed point
- Floating point
- Imaginary
- Which order represents the number complexity from least complex to most complex?
- Fixed point, integers, floating point
- Integer, fixed point, floating point
- Floating point, fixed point, integer
- Integer, floating point, fixed point
- The following code is an example of what kind of design?
always @(posedge clk) begin if (stage[0]) out[0] <= fp_out[0]; if (stage[1]) out[1] <= out[0] + fp_out[1]; if (stage[2]) out[2] <= out[1] + out[0] + fp_out[2]; end
- Pipelined
- Parallel
- State machine
- The following code is an example of what kind of design?
always @(posedge clk) begin for (int i = 0; i < 128; i++) dout[i] <= din[i*2] + din[i*2...