Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing default case from unique case in csrnc_reg_top and entropy_s… #208

Merged
merged 2 commits into from
Sep 13, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add reg_rdata_next = '0 to prevent X prop
  • Loading branch information
howardtr committed Sep 9, 2023
commit 2a15899b9f377ce74ea657414d2afe8dd4e093df
1 change: 1 addition & 0 deletions src/csrng/rtl/csrng_reg_top.sv
Original file line number Diff line number Diff line change
@@ -1946,6 +1946,7 @@ module csrng_reg_top #(

// Read data return
always_comb begin
reg_rdata_next = '0;
unique case (1'b1)
addr_hit[0]: begin
reg_rdata_next[0] = intr_state_cs_cmd_req_done_qs;
1 change: 1 addition & 0 deletions src/entropy_src/rtl/entropy_src_reg_top.sv
Original file line number Diff line number Diff line change
@@ -3587,6 +3587,7 @@ module entropy_src_reg_top #(

// Read data return
always_comb begin
reg_rdata_next = '0;
unique case (1'b1)
addr_hit[0]: begin
reg_rdata_next[0] = intr_state_es_entropy_valid_qs;