NDSFactory/ndsfactory/fatstruct.h
2024-08-22 21:24:47 +02:00

13 lines
152 B
C++

#pragma once
#include <cstdint>
struct FatRange {
uint32_t startAddr;
uint32_t endAddr;
};
struct FatFileID {
uint16_t id;
std::string path;
};