Newer
Older
minerva / Kernel / Prekernel / Arch / riscv64 / ArchSpecificBootInfo.h
@minerva minerva on 13 Jul 276 bytes Initial commit
/*
 * Copyright (c) 2024, Sönke Holz <sholz8530@gmail.com>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/Types.h>

#include <AK/Platform.h>
VALIDATE_IS_RISCV64()

namespace Kernel {

struct ArchSpecificBootInfo {
    FlatPtr boot_hart_id;
};

}