Answered step by step
Verified Expert Solution
Question
1 Approved Answer
The following algorithm is used to find the integer square root for an input integer number X [ Ex 1 : if X { 4
The following algorithm is used to find the integer square root for an input integer number X Ex: if X then the result integer square root Y Ex: if X then the result integer square root Y Input: X nbit integer numberOutput: Y VXStep: Initialization: X Imput DataQB step: Q Q Bstep: B B repeat the last two steps step and step until Q A step: Shift B one bit to the right a logical shiftstep: Y BThe resultComplete the following Verilog code to provide a behavioral implementation for this algorithm. module SORTCalculator input CLK input : x output reg : YYour design should include the following pins: CLK: negative edge trigger input clock X: The input number bits Y: The result square root bitsHint: define the variables A B and Q to be of size Notes:: she sens descrieDO NOT use the following operators: DO NOT use an algorithmic state machine.The calculation should be synchronous with the clock the result should be calculated in a single clock cycle at the falling edge of the input clockYou have to use EDA Playground for this assignmentYou have to submit two files: A Verilog code to implement your Design A testbench file to simulate and test your design:a Set the clock period to be nsb You have to cover all the possible cases for the input data different casesc For each case you have to:i Select the value for X from to ii Wait for two clock cycles
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started