Revision c828a80fe47f698a23d791dc74f910bea416adfd authored by hudson@kremvax on 06 June 2009, 12:07:01 UTC, committed by hudson@kremvax on 06 June 2009, 12:07:01 UTC
1 parent 01af77d
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