summaryrefslogtreecommitdiffstats
path: root/newlib/libc/sys/arm/_fault_isr.c
blob: f0fc81aedac605723cd1077442c49c89b97fe2aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "newlib.h"

/* Called when a hardware fault occurs.  Users can replace this
   function.  */ 

void
_fault_isr() 
{ 
  /* Sit an endless loop so that the user can analyze the situation
     from the debugger.  */
  while (1);
}