1
Day 15
NOT SUBMITTED

Day 15

Design and verify a 4-bit round robin arbiter.

Interface Definition

  • Output should be produced in a single cycle
  • Output must be one-hot
  • The module should have the following interface:
module day15 (
  input     wire        clk,
  input     wire        reset,

  input     wire[3:0]   req_i,
  output    logic[3:0]  gnt_o
);

Coding Exercise

You're expected to code both the RTL and testbench for the problem. Your testbench should include the stimulus and checkers.

NOTE

The testcase will show PASSED as long as the RTL and testbench compile, but it doesn't imply that the implemented logic is correct.

If you're interested in learning more about RTL Design and don't want to worry about implementing the checks or the testbench code then I'd recommend the Hands-on RTL Design course. The course contains 25 RTL Design problems to help improve your design skills and comes with a 2-part video solution for every problem.

PS: Get a sweet 10% off on using my referral code: QS-RF-CFUNHYOW

Challenge

Design a parameterized round-robin arbiter

initializing...

Code editor is disabled. Please use desktop version of the site for a better hands on experience.

Day 15

Design and verify a 4-bit round robin arbiter.

Interface Definition

  • Output should be produced in a single cycle
  • Output must be one-hot
  • The module should have the following interface:
module day15 (
  input     wire        clk,
  input     wire        reset,

  input     wire[3:0]   req_i,
  output    logic[3:0]  gnt_o
);

Coding Exercise

You're expected to code both the RTL and testbench for the problem. Your testbench should include the stimulus and checkers.

NOTE

The testcase will show PASSED as long as the RTL and testbench compile, but it doesn't imply that the implemented logic is correct.

If you're interested in learning more about RTL Design and don't want to worry about implementing the checks or the testbench code then I'd recommend the Hands-on RTL Design course. The course contains 25 RTL Design problems to help improve your design skills and comes with a 2-part video solution for every problem.

PS: Get a sweet 10% off on using my referral code: QS-RF-CFUNHYOW

Challenge

Design a parameterized round-robin arbiter