https://bitbucket.org/hudson/magic-lantern
Revision 294d215958402c7187bc4c3a7942c84458b83fea authored by hudson@kremvax.wan on 11 March 2010, 03:11:56 UTC, committed by hudson@kremvax.wan on 11 March 2010, 03:11:56 UTC
- Use the gcc stdio library for common string functions
- Disable everything except early boot code for initial testing
- Find more functions in 2.0.3
1 parent ecc67d5
Raw File
Tip revision: 294d215958402c7187bc4c3a7942c84458b83fea authored by hudson@kremvax.wan on 11 March 2010, 03:11:56 UTC
Canon firmware 2.0.3 support
Tip revision: 294d215
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.
 */
/*
 * Copyright (C) 2009 Trammell Hudson <hudson+ml@osresearch.net>
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the
 * Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor,
 * Boston, MA  02110-1301, USA.
 */

.text
.org 0
.globl _start
_start:
	B	copy_and_restart
back to top