Files
Custom-Operating-System/kernel/include/platform/arm64/cpuinfo.h

14 lines
282 B
C
Raw Normal View History

2025-02-12 09:54:05 -05:00
#ifndef _KERNEL_PLATFORM_ARM64_CPUINFO_H
#define _KERNEL_PLATFORM_ARM64_CPUINFO_H
#include <libkern/c_attrs.h>
#include <libkern/types.h>
#include <platform/generic/cpu.h>
static inline bool cpuinfo_has_1gb_pages()
{
return true;
}
#endif // _KERNEL_PLATFORM_ARM64_CPUINFO_H