Exceptions

Hi,

Are there any exceptions supported in FVP?

I have tried dirty things like a division by 0 and accessing to 0 address 

volatile int x = 0;
volatile int y = 1;
volatile int *p = 0;
y = y / x;
y = y / *p;
printf("%d \r\n", y);

and FVP goes thru this with no sound.

I am using a modified code from 

https://github.com/Arm-Examples/Hello_V2M-MPS3-SSE-300-FVP

Parents Reply Children
No data