Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:22:49

0001 /*
0002  *  By Yang Xi <hiyangxi@gmail.com>.
0003  *
0004  *  The license and distribution terms for this file may be
0005  *  found in the file LICENSE in this distribution or at
0006  *  http://www.rtems.org/license/LICENSE.
0007  */
0008 
0009 #include <bsp.h>
0010 #include <bsp/bootcard.h>
0011 #include <pxa255.h>
0012 
0013 void bsp_reset( rtems_fatal_source source, rtems_fatal_code code )
0014 {
0015   (void) source;
0016   (void) code;
0017 
0018 #if ON_SKYEYE == 1
0019   SKYEYE_MAGIC_ADDRESS = 0xff;
0020 #endif
0021   RTEMS_UNREACHABLE();
0022 }