source: rtems/c/src/lib/libbsp/m68k/av5282/startup/bspclean.c @ 6ea100c1

4.104.114.95
Last change on this file since 6ea100c1 was a474e3c, checked in by Joel Sherrill <joel.sherrill@…>, on 03/12/07 at 11:18:19

2007-03-12 Joel Sherrill <joel@…>

  • include/coverhd.h, start/start.S, startup/bspclean.c, startup/bspstart.c, startup/linkcmds, startup/linkcmdsflash, startup/linkcmdsram: Correct license URL and/or fix mistake in copyright notice. Both of these mistakes appear to be from code submitted after these changes were made previously.
  • Property mode set to 100644
File size: 661 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 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *
16 *  http://www.rtems.com/license/LICENSE.
17 *
18 *  $Id$
19 */
20
21#include <rtems.h>
22#include <bsp.h>
23#include <rtems/bspIo.h>
24
25void bsp_cleanup( void )
26{
27        printk("\nRTEMS exited!\n");
28        for ( ;; )
29        {
30                asm volatile ( " nop " );
31                asm volatile ( " nop " );
32        }
33
34}
Note: See TracBrowser for help on using the repository browser.