blob: b3308bd6aee35e292374225b6916db1b8b0f7cd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* 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_MIP405)
b _start_pci
#else
b _start
#endif
#endif
|