aboutsummaryrefslogtreecommitdiff
path: root/debug/programs/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/programs/init.c')
-rw-r--r--debug/programs/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/debug/programs/init.c b/debug/programs/init.c
index 8b047de..e3efc8e 100644
--- a/debug/programs/init.c
+++ b/debug/programs/init.c
@@ -7,7 +7,7 @@ trap_handler_t trap_handler[NHARTS] = {0};
void set_trap_handler(trap_handler_t handler)
{
- unsigned hartid = csr_read(mhartid);
+ unsigned hartid = read_csr(mhartid);
trap_handler[hartid] = handler;
}
@@ -19,7 +19,7 @@ void enable_timer_interrupts()
void handle_trap(unsigned int mcause, void *mepc, void *sp)
{
- unsigned hartid = csr_read(mhartid);
+ unsigned hartid = read_csr(mhartid);
if (trap_handler[hartid]) {
trap_handler[hartid](hartid, mcause, mepc, sp);
return;