summaryrefslogtreecommitdiff
path: root/arch/powerpc/cpu/ppc4xx/resetvec.S
blob: a42d91fc3a9a6eabed7c903d07b746d588d1d6bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Copyright MontaVista Software Incorporated, 2000 */
#include <config.h>
	.section .resetvec,"ax"
#if defined(CONFIG_440)
	b _start_440
#else
#if defined(CONFIG_BOOT_PCI) && (defined(CONFIG_TARGET_MIP405) \
				 || defined(CONFIG_TARGET_MIP405T))
	b _start_pci
#else
	b _start
#endif
#endif