rev13@wp.pl | b3b57e8 | 2015-03-01 12:44:39 +0100 | [diff] [blame] | 1 | /* |
2 | * (C) Copyright 2015 | ||||
Kamil Lulko | decd33b | 2015-11-29 11:50:53 +0100 | [diff] [blame] | 3 | * Kamil Lulko, <kamil.lulko@gmail.com> |
rev13@wp.pl | b3b57e8 | 2015-03-01 12:44:39 +0100 | [diff] [blame] | 4 | * |
5 | * SPDX-License-Identifier: GPL-2.0+ | ||||
6 | */ | ||||
7 | |||||
Phil Edworthy | fe54552 | 2017-06-01 07:33:29 +0100 | [diff] [blame] | 8 | #include <asm/assembler.h> |
9 | |||||
rev13@wp.pl | b3b57e8 | 2015-03-01 12:44:39 +0100 | [diff] [blame] | 10 | .globl reset |
11 | .type reset, %function | ||||
12 | reset: | ||||
Phil Edworthy | fe54552 | 2017-06-01 07:33:29 +0100 | [diff] [blame] | 13 | W(b) _main |
rev13@wp.pl | b3b57e8 | 2015-03-01 12:44:39 +0100 | [diff] [blame] | 14 | |
15 | .globl c_runtime_cpu_setup | ||||
16 | c_runtime_cpu_setup: | ||||
17 | mov pc, lr |