mirror of
https://github.com/Luca1991/NDSFactory.git
synced 2025-07-09 13:30:12 +02:00
9 lines
97 B
C++
9 lines
97 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
struct FatRange {
|
|
uint32_t startAddr;
|
|
uint32_t endAddr;
|
|
};
|