https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: e5b998718734524215e9194a103d9812295f1edb authored by hudson@kremvax on 22 June 2009, 00:45:12 UTC
Move menu drawing into menu.c and fix LCD zoom bug
Tip revision: e5b9987
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