subject

Design an ARMv8 Sign Extender module For this part of Lab 7 you will design the sign extender module for your ARMv8 processor in Verilog. As an example, below is a simple 16 to 32-bit sign extender module: module SignExtender(BusImm, Imm16, Ctrl); output [31:0] BusImm; input [15:0] Imm16; input Ctrl; wire extBit; assign #1 extBit = (Ctrl ? 1'b0 : Imm16[15]); assign BusImm = {{16{extBit}}, Imm16}; endmodule Rewrite this module to meet the needs of your ARMv8 processor. In particular, the sign extender should output a 64-bit BusImm, and it's input should be the 32-bit instruction. Depending on the instruction type (B, CB or D), it should extend the right set of bits in the instruction up to a full 64-bits. Save this module in a file called SignExtender. v. Implement a testbench for the module, SignExtender, and simulate the testbench with VCS. Your testbench should be self-checking, i. e. it should not only set inputs but it should also check for expected outputs and print a failure message in the event of unexpected output. You may use the testbenches provided in Lab06 as an example of an exhaustive, self-checking testbench. Simulate your testbench and show that your new SignExtender works properly. Demonstrate your progress to the TA. Zip or tar the SignExtender and testbench into one file and attach it here.

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 00:30
Pl i need the answer now ! which one of the following is considered a peripheral? a software b mouse c usb connector d motherboard
Answers: 1
question
Computers and Technology, 24.06.2019 13:00
Refer to the figure and match the theorem that supports the statement.1.if chords are =, then arcs are =.if bc = de, then arc bc = arc de2.if arcs are =, then chords are =.if arc bc = arc de, then bc = de3.diameters perpen
Answers: 3
question
Computers and Technology, 24.06.2019 13:00
In a heat transfer course, we can derive the equation for the temperature distribution in a flat rectangular plate. in this example, we will look at a plate at steadystate with three sides being held at t1, and one side held at t2. the temperature for any location on the plate, t(x,y), can be calculated by where create a function (prob3_5) that will take inputs of vectors x and y in feet, scalar n, scalars l and w in feet and scalars t1 and t2 in degrees fahrenheit. it will output a matrix t which is the temperature of each x and y locations. t will have the number of columns equal to the number of elements in x and rows equal to the number of elements in y. though this can be done without loops (perhaps more efficiently), your program must use a nested loop.
Answers: 2
question
Computers and Technology, 25.06.2019 04:10
8. create an abstract student class for parker university. the class contains fields for student id number, last name, and annual tuition. include a constructor that requires parameters for the id number and name. include get and set methods for each field; the settuition() method is abstract. create three student subclasses named undergraduatestudent, graduatestudent, and studentatlarge, each with a unique settuition() method. tuition for an undergraduatestudent is $4,000 per semester, tuition for a graduatestudent is $6,000 per semester, and tuition for a studentatlarge is $2,000 per semester. write an application that creates an array of at least six objects to demonstrate how the methods work for objects for each student type. save the files as student.java, undergraduatestudent.java, graduatestudent.java, studentatlarge.java, and studentdemo.java.
Answers: 1
You know the right answer?
Design an ARMv8 Sign Extender module For this part of Lab 7 you will design the sign extender module...
Questions
question
Mathematics, 17.07.2021 19:30
question
Biology, 17.07.2021 19:30
question
Mathematics, 17.07.2021 19:30
Questions on the website: 13722361