Skip to content

Commit

Permalink
[*] Comment fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeykhbr committed Dec 15, 2023
1 parent 10766a1 commit aec40dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sc/rtl/riverlib/core/stacktrbuf.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ SC_MODULE(StackTraceBuffer) {
private:
struct StackTraceBuffer_registers {
sc_signal<sc_uint<5>> raddr;
sc_signal<sc_biguint<(2 * RISCV_ARCH)>> stackbuf[STACK_TRACE_BUF_SIZE];// [pc, npc]
sc_signal<sc_biguint<(2 * RISCV_ARCH)>> stackbuf[STACK_TRACE_BUF_SIZE];
} v, r;

};
Expand Down
2 changes: 1 addition & 1 deletion sv/rtl/riverlib/core/stacktrbuf_pkg.sv
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import river_cfg_pkg::*;

typedef struct {
logic [4:0] raddr;
logic [(2 * RISCV_ARCH)-1:0] stackbuf[0: STACK_TRACE_BUF_SIZE - 1];// [pc, npc]
logic [(2 * RISCV_ARCH)-1:0] stackbuf[0: STACK_TRACE_BUF_SIZE - 1];
} StackTraceBuffer_registers;

endpackage: stacktrbuf_pkg

0 comments on commit aec40dd

Please sign in to comment.