Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ if(NOT TARGET dbt-rise-core)
dbt_rise_core_git
GIT_REPOSITORY "https://github.com/Minres/DBT-RISE-Core.git"
#GIT_TAG "origin/develop"
GIT_TAG 97c8150
GIT_TAG f0a0267
GIT_SHALLOW OFF
UPDATE_DISCONNECTED NOT ${UPDATE_EXTERNAL_PROJECT} # When enabled, this option causes the update step to be skipped.
)
Expand Down
2 changes: 1 addition & 1 deletion src/iss/arch/riscv_hart_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,7 @@ template <typename BASE = logging::disass> struct riscv_hart_common : public BAS

uint64_t get_instr_count() override { return arch.reg.icount; }

uint64_t get_pendig_traps() override { return arch.reg.trap_state; }
uint64_t get_pending_traps() override { return arch.reg.trap_state; }

uint64_t get_total_cycles() override { return arch.reg.cycle + arch.cycle_offset; }

Expand Down