// SPDX-FileCopyrightText: Copyright (c) 2023 merryhime // SPDX-License-Identifier: MIT #pragma once #include #include "oaknut/feature_detection/cpu_feature.hpp" #include "oaknut/feature_detection/id_registers.hpp" namespace oaknut { inline CpuFeatures detect_features() { return CpuFeatures{CpuFeature::FP, CpuFeature::ASIMD}; } inline std::optional read_id_registers() { return std::nullopt; } } // namespace oaknut