loading dols

This commit is contained in:
2026-05-12 10:44:44 +02:00
parent 5f1e3aa095
commit 0b1d14bcd5
9 changed files with 163 additions and 42 deletions
+5
View File
@@ -30,6 +30,11 @@ 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>