Play-/Source/iop/Iop_LibSd.h

17 lines
296 B
C
Raw Permalink Normal View History

#pragma once
#include "Iop_Module.h"
namespace Iop
{
class CLibSd : public CModule
{
public:
2018-04-30 21:01:23 +01:00
std::string GetId() const override;
std::string GetFunctionName(unsigned int) const override;
void Invoke(CMIPS&, unsigned int) override;
2015-03-29 23:57:21 -04:00
2018-04-30 21:01:23 +01:00
static void TraceCall(CMIPS&, unsigned int);
};
}