resetvec.S 293 B

12345678910111213
  1. /* Copyright MontaVista Software Incorporated, 2000 */
  2. #include <config.h>
  3. .section .resetvec,"ax"
  4. #if defined(CONFIG_440)
  5. b _start_440
  6. #else
  7. #if defined(CONFIG_BOOT_PCI) && (defined(CONFIG_TARGET_MIP405) \
  8. || defined(CONFIG_TARGET_MIP405T))
  9. b _start_pci
  10. #else
  11. b _start
  12. #endif
  13. #endif