uboot-mt623x/cpu/ppc4xx/resetvec.S

13 lines
243 B
ArmAsm
Raw Normal View History

2002-11-03 00:38:21 +00:00
/* Copyright MontaVista Software Incorporated, 2000 */
#include <config.h>
2002-11-03 00:38:21 +00:00
.section .resetvec,"ax"
#if defined(CONFIG_440)
b _start_440
#else
#if defined(CONFIG_BOOT_PCI) && defined(CONFIG_MIP405)
b _start_pci
2002-11-03 00:38:21 +00:00
#else
b _start
#endif
#endif