getting closer and closer to the xfb copy loop in panda

This commit is contained in:
2026-05-13 11:27:28 +02:00
parent fc26f75118
commit 9c3a6789f6
9 changed files with 319 additions and 82 deletions
-5
View File
@@ -30,11 +30,6 @@ static inline constexpr bool is_inside_range(const std::integral auto &addr, con
return addr >= start && addr <= end;
}
static inline constexpr bool is_inside_range_ext(const std::integral auto &addr, const std::integral auto &start,
const std::integral auto &end) {
return addr >= start && addr < end;
}
template <typename T>
static constexpr inline T read_access(const u8 *data, const u32 index);
template <typename T>