geode/loader/dobby/source/core/arch/CpuFeature.h

20 lines
379 B
C
Raw Normal View History

2022-07-30 12:24:03 -04:00
#ifndef CORE_ARCH_CPU_FEATURE_H
#define CORE_ARCH_CPU_FEATURE_H
#include "common_header.h"
class CpuFeatures {
private:
static void FlushICache(void *start, int size) {
ClearCache(start, (void *)((addr_t)start + size));
}
static void FlushICache(void *start, void *end) {
ClearCache(start, end);
}
static void ClearCache(void *start, void *end);
};
#endif