File: head.c

package info (click to toggle)
vmelilo 1.5.4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 428 kB
  • ctags: 920
  • sloc: ansic: 8,183; makefile: 157; asm: 122; perl: 18
file content (25 lines) | stat: -rw-r--r-- 577 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 _start;\n"
"_start:\n"
"	jbra	(Main);\n"
);

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