Skip to content
Open
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 @@ -44,7 +44,7 @@ if(NOT TARGET dbt-rise-core)
FetchContent_Declare(
dbt_rise_core_git
GIT_REPOSITORY "https://github.com/Minres/DBT-RISE-Core.git"
GIT_TAG 9b571ff9
GIT_TAG 752b9d67
GIT_SHALLOW OFF
UPDATE_DISCONNECTED NOT ${UPDATE_EXTERNAL_PROJECT} # When enabled, this option causes the update step to be skipped.
)
Expand Down
1 change: 1 addition & 0 deletions src/iss/arch/riscv_hart_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -1057,6 +1057,7 @@ template <typename BASE = logging::disass> struct riscv_hart_common : public BAS

std::unordered_map<std::string, uint64_t> const& get_symbol_table(std::string name) override { return arch.symbol_table; }

unsigned get_core_id() override { return arch.mhartid_reg; };
riscv_hart_common<BASE>& arch;
};

Expand Down
Loading