mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
16 lines
213 B
ArmAsm
16 lines
213 B
ArmAsm
|
/*
|
||
|
* (C) Copyright 2015
|
||
|
* Kamil Lulko, <rev13@wp.pl>
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
.globl reset
|
||
|
.type reset, %function
|
||
|
reset:
|
||
|
b _main
|
||
|
|
||
|
.globl c_runtime_cpu_setup
|
||
|
c_runtime_cpu_setup:
|
||
|
mov pc, lr
|