cpuinit_gcc.S 394 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) 2006-2022, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2019-12-04 Jiaxun Yang Initial version
  9. */
  10. #ifndef __ASSEMBLY__
  11. #define __ASSEMBLY__
  12. #endif
  13. #include <mips.h>
  14. .section ".start", "ax"
  15. .set noreorder
  16. .globl rt_cpu_early_init
  17. rt_cpu_early_init:
  18. jr ra
  19. nop