diff options
-rw-r--r-- | src/arch/riscv/trap_handler.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/arch/riscv/trap_handler.c b/src/arch/riscv/trap_handler.c index 53bcbf98c1..ff3be56f78 100644 --- a/src/arch/riscv/trap_handler.c +++ b/src/arch/riscv/trap_handler.c @@ -65,7 +65,9 @@ void handle_supervisor_call(trapframe *tf) { returnValue = mcall_shutdown(); break; case SET_TIMER: - printk(BIOS_DEBUG, "Setting timer...\n"); + printk(BIOS_DEBUG, + "Setting timer to %p (current time is %p)...\n", + (void *)arg0, (void *)rdtime()); returnValue = mcall_set_timer(arg0); break; case QUERY_MEMORY: @@ -147,7 +149,8 @@ void trap_handler(trapframe *tf) { printk(BIOS_DEBUG, "Trap: Environment call from M-mode\n"); break; default: - printk(BIOS_DEBUG, "Trap: Unknown cause\n"); + printk(BIOS_DEBUG, "Trap: Unknown cause %p\n", + (void *)cause); break; } printk(BIOS_DEBUG, "Stored ra: %p\n", (void*) tf->gpr[1]); |