Question: I am trying to create an IEEE Standard Floating-Point Processor with these basic specifications of the processor are as follows. a) Single-precision 32-bit floating-point numbers
I am trying to create an IEEE Standard Floating-Point Processor with these basic specifications of the processor are as follows.
a) Single-precision 32-bit floating-point numbers are used as inputs and outputs.
b) The processor performs multiplications and additions/subtractions.
c) The input is a 66-bit stream starting with a 2-bit op-code followed by two 32-bit I wrote code for a-c:
module seperateBits(
input [65:0] serialInput,
output [1:0] opCode,
output [31:0] A,
output [31:0] B );
assign {opCode,A,B} = serialInput;
endmodule
Can you help me write a verilog module to perform this one specification:
(1) A wallace tree multiplier is used
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
