1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-14 22:41:00 +00:00
serenity/Kernel/Prekernel/Arch/aarch64/boot.S
Nico Weber 9c5e947e0e Prekernel: Make build on aarch64
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.
2021-08-28 21:51:30 +01:00

16 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