start.S 223 B

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