Skip to content

Commit

Permalink
Update core/cva6_tip.sv
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
dassheladiya and github-actions[bot] authored Nov 13, 2024
1 parent 04277bb commit 67c8aac
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions core/cva6_tip.sv
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,14 @@ endgenerate



//TIP signals
always_comb begin
for (int i = 0; i < cva6_config_pkg::CVA6ConfigNrCommitPorts; i++) begin
logic exception, mem_exception;
exception = commit_instr_i[i].valid && ex_commit_i.valid;
mem_exception = exception &&


//TIP signals
always_comb begin
for (int i = 0; i < cva6_config_pkg::CVA6ConfigNrCommitPorts; i++) begin
logic exception, mem_exception;
exception = commit_instr_i[i].valid && ex_commit_i.valid;
mem_exception = exception &&
(ex_commit_i.cause == riscv::INSTR_ADDR_MISALIGNED ||
ex_commit_i.cause == riscv::INSTR_ACCESS_FAULT ||
ex_commit_i.cause == riscv::ILLEGAL_INSTR ||
Expand Down

0 comments on commit 67c8aac

Please sign in to comment.