Skip to content

Commit

Permalink
Merge pull request #19 from microsoft/fix_10302024
Browse files Browse the repository at this point in the history
fixed out-of-range references in core_wrapper
  • Loading branch information
kliuMsft authored Oct 30, 2024
2 parents 55bfc9d + 8f93571 commit 98b0866
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions src/msft_cheri_core/msftDvIp_cheri_core_wrapper.sv
Original file line number Diff line number Diff line change
Expand Up @@ -265,22 +265,23 @@ assign AR_CA2 = `CHERI_RF_PATH.rf_cap_q[12];
assign AR_CA3 = `CHERI_RF_PATH.rf_cap_q[13];
assign AR_CA4 = `CHERI_RF_PATH.rf_cap_q[14];
assign AR_CA5 = `CHERI_RF_PATH.rf_cap_q[15];
assign AR_CA6 = `CHERI_RF_PATH.rf_cap_q[16];
assign AR_CA7 = `CHERI_RF_PATH.rf_cap_q[17];
assign AR_CS2 = `CHERI_RF_PATH.rf_cap_q[18];
assign AR_CS3 = `CHERI_RF_PATH.rf_cap_q[19];
assign AR_CS4 = `CHERI_RF_PATH.rf_cap_q[20];
assign AR_CS5 = `CHERI_RF_PATH.rf_cap_q[21];
assign AR_CS6 = `CHERI_RF_PATH.rf_cap_q[22];
assign AR_CS7 = `CHERI_RF_PATH.rf_cap_q[23];
assign AR_CS8 = `CHERI_RF_PATH.rf_cap_q[24];
assign AR_CS9 = `CHERI_RF_PATH.rf_cap_q[25];
assign AR_CS10 = `CHERI_RF_PATH.rf_cap_q[26];
assign AR_CS11 = `CHERI_RF_PATH.rf_cap_q[27];
assign AR_CT3 = `CHERI_RF_PATH.rf_cap_q[28];
assign AR_CT4 = `CHERI_RF_PATH.rf_cap_q[29];
assign AR_CT5 = `CHERI_RF_PATH.rf_cap_q[30];
assign AR_CT6 = `CHERI_RF_PATH.rf_cap_q[31];

// assign AR_CA6 = `CHERI_RF_PATH.rf_cap_q[16];
// assign AR_CA7 = `CHERI_RF_PATH.rf_cap_q[17];
// assign AR_CS2 = `CHERI_RF_PATH.rf_cap_q[18];
// assign AR_CS3 = `CHERI_RF_PATH.rf_cap_q[19];
// assign AR_CS4 = `CHERI_RF_PATH.rf_cap_q[20];
// assign AR_CS5 = `CHERI_RF_PATH.rf_cap_q[21];
// assign AR_CS6 = `CHERI_RF_PATH.rf_cap_q[22];
// assign AR_CS7 = `CHERI_RF_PATH.rf_cap_q[23];
// assign AR_CS8 = `CHERI_RF_PATH.rf_cap_q[24];
// assign AR_CS9 = `CHERI_RF_PATH.rf_cap_q[25];
// assign AR_CS10 = `CHERI_RF_PATH.rf_cap_q[26];
// assign AR_CS11 = `CHERI_RF_PATH.rf_cap_q[27];
// assign AR_CT3 = `CHERI_RF_PATH.rf_cap_q[28];
// assign AR_CT4 = `CHERI_RF_PATH.rf_cap_q[29];
// assign AR_CT5 = `CHERI_RF_PATH.rf_cap_q[30];
// assign AR_CT6 = `CHERI_RF_PATH.rf_cap_q[31];
assign CPCC = `CHERI_PCC_PATH.pcc_cap_q;

typedef struct packed {
Expand Down

0 comments on commit 98b0866

Please sign in to comment.