source: rtems/c/src/lib/libbsp/i960/cvme961/startup/bspclean.c @ e667a0b

4.104.114.84.95
Last change on this file since e667a0b was e667a0b, checked in by Joel Sherrill <joel.sherrill@…>, on 03/21/97 at 19:17:46

Rewrote to avoid references to C symbols from assembly. This entirely
circumvents the problem of leading underscores.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/*
2 *  This routine is used to return control to the NINDY monitor
3 *  and is automatically invoked at shutdown.
4 *
5 *  NOTES:  DOES NOT RETURN!!!
6 *
7 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
8 *  On-Line Applications Research Corporation (OAR).
9 *  All rights assigned to U.S. Government, 1994.
10 *
11 *  This material may be reproduced by or for the U.S. Government pursuant
12 *  to the copyright license under the clause at DFARS 252.227-7013.  This
13 *  notice must appear in all copies of this file and its derivatives.
14 *
15 *  $Id$
16 */
17
18#include <rtems.h>
19#include "bsp.h"
20
21void bsp_cleanup( void )
22{
23  extern void start( void  );
24
25  register volatile void *start_addr = 0;
26
27  asm volatile( "mov   0,g0;"
28                "fmark ;"
29                "syncf ;"
30                ".word    0xfeedface ; "
31                "bx       (%0)" : "=r" (start_addr) : "0" (start_addr) );
32 /*  The constant 0xfeedface is a magic word for break which
33  *  is defined by NINDY.  The branch extended restarts the
34  *  application if the user types "go".
35  */
36}
Note: See TracBrowser for help on using the repository browser.