Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Following is the code of a 4-bit parallel register. What are the errors? module Reg4(I, Q, Clk, Rst); input [3:0] I; output [3:0] Q; wire
Following is the code of a 4-bit parallel register. What are the errors?
module Reg4(I, Q, Clk, Rst);
input [3:0] I;
output [3:0] Q;
wire [3:0] Q;
input Clk, Rst;
always @(Clk) begin
if (Rst == 1 )
Q <= 4'b0000;
else
Q <= I;
end
endmodule
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