2018-05-06 17:58:06 -04:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2015-03-01 12:44:39 +01:00
|
|
|
/*
|
|
|
|
|
* (C) Copyright 2015
|
2015-11-29 11:50:53 +01:00
|
|
|
* Kamil Lulko, <kamil.lulko@gmail.com>
|
2015-03-01 12:44:39 +01:00
|
|
|
*/
|
|
|
|
|
|
2017-06-01 07:33:29 +01:00
|
|
|
#include <asm/assembler.h>
|
|
|
|
|
|
2015-03-01 12:44:39 +01:00
|
|
|
.globl reset
|
|
|
|
|
.type reset, %function
|
|
|
|
|
reset:
|
2017-06-01 07:33:29 +01:00
|
|
|
W(b) _main
|
2015-03-01 12:44:39 +01:00
|
|
|
|
|
|
|
|
.globl c_runtime_cpu_setup
|
|
|
|
|
c_runtime_cpu_setup:
|
|
|
|
|
mov pc, lr
|