NDSFactory/ndsfactory/fatstruct.h
2021-03-01 18:56:19 +01:00

12 lines
147 B
C++

#ifndef FATSTRUCT_H
#define FATSTRUCT_H
#include <cstdint>
struct FatRange {
uint32_t startAddr;
uint32_t endAddr;
};
#endif // FATSTRUCT_H