diff options
Diffstat (limited to 'lab_4/CST456 Lab4.md')
| -rw-r--r-- | lab_4/CST456 Lab4.md | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/lab_4/CST456 Lab4.md b/lab_4/CST456 Lab4.md new file mode 100644 index 0000000..36d9acd --- /dev/null +++ b/lab_4/CST456 Lab4.md @@ -0,0 +1,70 @@ +# CST456 Lab4 + +**CST456 – Lab 4** + +**Simple Randomized Testbench with Scoreboard and Checker** + +**Objective** + +The objective of this lab is to implement a simple randomized testbench to test the operations and operands of a synchronous arithmetic and logic unit (ALU). + +**Design Under Verification (DUV)** + +The ALU contains the following ports: + +| **Port Name** | **Signal Type** | **Direction** | **Number of Bits** | +| --- | --- | --- | --- | +| clk | Clock | Input | 1 | +| op_start | Control | Input | 1 | +| operation | Control | Input | 2 | +| operand_a | Data | Input | 8 | +| operand_b | Data | Input | 8 | +| result | Data | Output | 16 | + +At the rising edge of the clock, if op_start is asserted (== 1’b1) then the operation, operand_a, and operand_b signals are latched into the ALU. Exactly two clock cycles later the result of the operation is read from the result port. The ALU supports the following operations: + +| **Name** | **Value** | **Description** | +| --- | --- | --- | +| ADD | 2’b00 | operand_a is added to operand_b. Only the lower 49 bits of the result are used. | +| MULT | 2’b01 | operand_a is multiplied with operand_b. This is an unsigned operation and all 96 bits of the result are used. | +| OR | 2’b10 | operand_a is bitwise ORed with operand_b. Only the lower 48 bits of the result are used. | +| AND | 2’b11 | operand_a is bitwised ANDed with operand_b. Only the lower 48 bits of the result are used. | + +**Testbench** + +Edit the tb.sv file and create a testbench to test all the operations + +for a randomly generated subset of operand values. The testbench will + +include a scoreboard struct to log the operation, operand_a, + +operand_b, and result values, as well as a checker task that checks + +the scoreboard once an operation has completed. + +Create a repeat loop to continually generate random values for the + +operation, operand_a, and operand_b signals. Use the std::randomize + +function and the `RND_CHECK macro to check that randomization was + +successful. At the appropriate times log the operation, operand_a, + +operand_b, and result values to the scoreboard, and call the checker + +task once the scoreboard has been completed. Use the + +`FAIL_UNLESS_EQUAL macro to check the expected result with the tested + +result. Note that the `FAIL_UNLESS_EQUAL macro does not stop the test + +in the event of a failure. To run the simulation in Xilinx Vivado for + +Windows execute the following **bat** files under the **SIM** directory: + +- run_sim_cli.bat (command line simulation) +- run_sim_gui.bat (gui simulation with waveform viewer) + +**Lab Submission** + +Zip the entire contents of the lab directory and submit it to Canvas.
\ No newline at end of file |