File: head.c

package info (click to toggle)
vmelilo 1.5.3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 428 kB
  • ctags: 920
  • sloc: ansic: 8,187; makefile: 157; asm: 122; perl: 18
file content (25 lines) | stat: -rw-r--r-- 637 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 *	VME Linux/m68k Loader
 *
 *	(c) Copyright 1997 by Nick Holgate
 *
 *	This file is subject to the terms and conditions of the GNU General Public
 *	License.  See the file COPYING for more details.
 */

/*--------------------------------------------------------------------------*/

#include "loader.h"

/*--------------------------------------------------------------------------*/
/*  Program Entry
 */

__asm__(".text\n"
__ALIGN_STR "\n"
".globl " SYMBOL_NAME_STR(_start) ";\n"
SYMBOL_NAME_STR(_start) ":\n"
"	jbra	(" SYMBOL_NAME_STR(Main) ");\n"
);

/*-----------------------------< end of file >------------------------------*/