· [3 Grades) Research Question: Consider the following two modules. The first module represents synchronous reset while
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
· [3 Grades) Research Question: Consider the following two modules. The first module represents synchronous reset while
· [3 Grades) Research Question: Consider the following two modules. The first module represents synchronous reset while the other represents asynchronous reset. What is the difference between the two types of reset? Justify your answer with a timing diagram. module async_rst(clk, rst, a, b); module sync_rst (clk, rst, a, b); input clk, rst; input clk, ist; input a; input a; output reg b; output reg b; always @ (posedge clk, posedge rst) always @ (posedge clk) begin begin if (rst == 1) if (rst == 1) b<=0; b<=; else b<=a; b<=a; end end endmodule endmodule else
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!