mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
16 lines
296 B
C++
16 lines
296 B
C++
#pragma once
|
|
|
|
#include "Iop_Module.h"
|
|
|
|
namespace Iop
|
|
{
|
|
class CLibSd : public CModule
|
|
{
|
|
public:
|
|
std::string GetId() const override;
|
|
std::string GetFunctionName(unsigned int) const override;
|
|
void Invoke(CMIPS&, unsigned int) override;
|
|
|
|
static void TraceCall(CMIPS&, unsigned int);
|
|
};
|
|
}
|