mirror of
https://github.com/Luca1991/NDSFactory.git
synced 2025-07-08 21:20:13 +02:00
13 lines
152 B
C++
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;
|
|
}; |