Skip to content
Snippets Groups Projects
Commit ef2c1d85 authored by Michal Simek's avatar Michal Simek
Browse files

microblaze: Report priviledged or stack protection exception


Just list one more exception.

Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
parent 6ba64f24
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,9 @@ void _hw_exception_handler (void)
puts ("Divide by zero exception\n");
break;
#ifdef MICROBLAZE_V5
case 0x7:
puts("Priviledged or stack protection violation exception\n");
break;
case 0x1000:
puts ("Exception in delay slot\n");
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment