mirror of
https://github.com/libretro/Play-.git
synced 2024-11-27 18:50:28 +00:00
15 lines
153 B
C++
15 lines
153 B
C++
#pragma once
|
|
|
|
#include "Types.h"
|
|
|
|
namespace Iop
|
|
{
|
|
struct MEMORYBLOCK
|
|
{
|
|
uint32 isValid;
|
|
uint32 nextBlockId;
|
|
uint32 address;
|
|
uint32 size;
|
|
};
|
|
};
|