Hi,
I'm trying to generate a memory read access exception on my TMDSEVM6678LE by doing this..
int *ptr = (int *)0;
int test = *ptr;
But I'm not getting a bios exception dump, it is just ignoring it. Any ideas?
I can get the bios exception dump when I call a null function...
void (*func)(void);
func = (void (*)(void))0;
(*func)();