source: rtems/c/src/lib/libbsp/m68k/mcf5329/startup/bspclean.c @ e9db9661

4.9.1
Last change on this file since e9db9661 was 6b56ec3, checked in by Joel Sherrill <joel.sherrill@…>, on 06/20/08 at 14:58:34

2008-06-20 Matthew Riek <matthew.riek@…>

  • ChangeLog?, Makefile.am, README, bsp_specs, configure.ac, gdb-init, preinstall.am, clock/clock.c, console/console.c, include/bsp.h, include/bspopts.h.in, include/coverhd.h, include/tm27.h, network/network.c, start/start.S, startup/bspclean.c, startup/bspstart.c, startup/cfinit.c, startup/init5329.c, startup/linkcmds, startup/linkcmdsflash, timer/timer.c: New files.
  • Property mode set to 100644
File size: 659 bytes
Line 
1
2/*
3 *  SBC5206 bsp_cleanup
4 *
5 *  This routine returns control from RTEMS to the monitor.
6 *
7 *  Author:
8 *    David Fiddes, D.J@fiddes.surfaid.org
9 *    http://www.calm.hw.ac.uk/davidf/coldfire/
10 *
11 *  COPYRIGHT (c) 1989-1998.
12 *  On-Line Applications Research Corporation (OAR).
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.rtems.com/license/LICENSE.
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    asm volatile (" nop ");
31    asm volatile (" nop ");
32  }
33}
Note: See TracBrowser for help on using the repository browser.