start.S 254 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2015
  4. * Kamil Lulko, <kamil.lulko@gmail.com>
  5. */
  6. #include <asm/assembler.h>
  7. .globl reset
  8. .type reset, %function
  9. reset:
  10. W(b) _main
  11. .globl c_runtime_cpu_setup
  12. c_runtime_cpu_setup:
  13. mov pc, lr