mirror of
https://github.com/Luca1991/NDSFactory.git
synced 2025-07-08 21:20:13 +02:00
12 lines
147 B
C++
12 lines
147 B
C++
#ifndef FATSTRUCT_H
|
|
#define FATSTRUCT_H
|
|
|
|
#include <cstdint>
|
|
|
|
struct FatRange {
|
|
uint32_t startAddr;
|
|
uint32_t endAddr;
|
|
};
|
|
|
|
#endif // FATSTRUCT_H
|