[libcpu][k210]fix stack frame print

This commit is contained in:
ZYH 2019-03-28 16:49:43 +08:00
parent 12ec9db198
commit fcb88f7034
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ struct exception_stack_frame
void print_stack_frame(uintptr_t * sp)
{
struct exception_stack_frame * esf = (struct exception_stack_frame *)sp;
struct exception_stack_frame * esf = (struct exception_stack_frame *)(sp+1);
rt_kprintf("\n=================================================================\n");
rt_kprintf("x1 (ra : Return address ) ==> 0x%08x%08x\n", esf->x1 >> 32 , esf->x1 & UINT32_MAX);