Skip to content

Commit

Permalink
fixed cget_high data alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
kliuMsft committed Mar 1, 2024
1 parent 433bf73 commit 13ce44d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtl/cheri_ex.sv
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ module cheri_ex import cheri_pkg::*; #(
begin
logic [65:0] tmp66;
tmp66 = MemCapFmt ? reg2mem_fmt1(rf_rcap_a, rf_rdata_a) :
{reg2memcap_fmt0(rf_rcap_a), rf_rdata_a};
{reg2memcap_fmt0(rf_rcap_a), 1'b0, rf_rdata_a[31:0]};
result_data_o = tmp66[64:33];
result_cap_o = NULL_REG_CAP;
cheri_rf_we_raw = 1'b1;
Expand Down

0 comments on commit 13ce44d

Please sign in to comment.