mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 12:07:14 +02:00
15 lines
348 B
C
15 lines
348 B
C
/*
|
|
* Copyright (c) 2021, Marcin Undak <mcinek@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
extern "C" void wait_cycles(int n);
|
|
extern "C" void el1_vector_table_install(void* vector_table);
|
|
|
|
// CPU initialization functions
|
|
extern "C" [[noreturn]] void return_from_el2();
|
|
extern "C" [[noreturn]] void return_from_el3();
|