Revision 767a84a73b5ad3f0b5f0a4e1f70f7b57dc588320 authored by hudson@kremvax on 20 June 2009, 16:59:27 UTC, committed by hudson@kremvax on 20 June 2009, 16:59:27 UTC
1 parent fd87828
Raw File
entry.S
/** \file
 * Initial entry point for relocated code.
 *
 * Modern gcc will re-order the functions, so this is necessary to have
 * as the very first entry point.
 */
.text
.org 0
.globl _start
_start:
	B	copy_and_restart
back to top