mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-29 04:37:55 +00:00
Add a dummy Arch/aarch64/boot.S that for now does nothing but let all processor cores sleep. For now, none of the actual Prekernel code is built for aarch64.
17 lines
193 B
ArmAsm
17 lines
193 B
ArmAsm
/*
|
|
* Copyright (c) 2021, Nico Weber <thakis@chromium.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
.text
|
|
|
|
.global start
|
|
.type start, @function
|
|
start:
|
|
b Lhalt
|
|
|
|
Lhalt:
|
|
wfi
|
|
b Lhalt
|