4. How many errors does the following verilog module code have? module something input a, input b. input c, output reg a
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
4. How many errors does the following verilog module code have? module something input a, input b. input c, output reg a
4. How many errors does the following verilog module code have? module something input a, input b. input c, output reg a always @ (posedge a) begin if (c) begin d <= 1'60; end else begin d = b; end end endmodule (a) o (b) 1 (c) 2 5. System Verilog uses random testing to: (d) 3 (a) allows you to verify the design sequentially (b) simplify the verification environment (c) increase simulation accuracy (d) speed up the verification process
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!