summaryrefslogblamecommitdiffstats
path: root/c/src/lib/libbsp/m68k/uC5282/startup/bspclean.c
blob: f8e0f8e4698a5ff7a898734d7f1c1ec2705108ec (plain) (tree)
1
2
3
4
5
6
7
8
9




                                                           
                                              
  
                       
                                                    


                                                           
                                         





                        

                           


                 
 
               
 
/*
 *  SBC5206 bsp_cleanup
 *
 *  This routine returns control from RTEMS to the monitor.
 *
 *  Author: W. Eric Norum <norume@aps.anl.gov>
 *
 *  COPYRIGHT (c) 2005.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 */

#include <rtems.h>
#include <bsp.h>
#include <rtems/bspIo.h>

extern void bsp_reset(int);

void bsp_cleanup(
  uint32_t status
)
{
  bsp_reset(0);
}