source: rtems/c/src/lib/libbsp/m68k/uC5282/startup/bspclean.c @ 518edef

4.104.114.84.95
Last change on this file since 518edef was 572484f, checked in by Eric Norum <WENorum@…>, on 01/28/05 at 19:35:23

New BSP for Arcturus uCDIMM ColdFire? 5282.

  • Property mode set to 100644
File size: 715 bytes
Line 
1/*
2 *  SBC5206 bsp_cleanup
3 *
4 *  This routine returns control from RTEMS to the monitor.
5 *
6 *  Author:
7 *    David Fiddes, D.J@fiddes.surfaid.org
8 *    http://www.calm.hw.ac.uk/davidf/coldfire/
9 *
10 *  COPYRIGHT (c) 1989-1998.
11 *  On-Line Applications Research Corporation (OAR).
12 *  Copyright assigned to U.S. Government, 1994.
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
16 *
17 *  http://www.OARcorp.com/rtems/license.html.
18 *
19 *  $Id$
20 */
21
22#include <rtems.h>
23#include <bsp.h>
24#include <rtems/bspIo.h>
25
26void bsp_cleanup( void )
27{
28        printk("\nRTEMS exited!\n");
29        for ( ;; )
30        {
31                asm volatile ( " nop " );
32                asm volatile ( " nop " );
33        }
34
35}
Note: See TracBrowser for help on using the repository browser.