Newer
Older
minerva / Kernel / Arch / riscv64 / Interrupts.h
@minerva minerva on 13 Jul 281 bytes Initial commit
/*
 * Copyright (c) 2025, 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 {

static constexpr size_t GENERIC_INTERRUPT_HANDLERS_COUNT = 256;

}