mirror of
https://github.com/libretro/Play-.git
synced 2025-02-01 14:15:27 +00:00
17 lines
216 B
C++
17 lines
216 B
C++
#pragma once
|
|
|
|
#include "Types.h"
|
|
#include <map>
|
|
#include <vector>
|
|
|
|
class CMIPS;
|
|
|
|
class CVuAnalysis
|
|
{
|
|
public:
|
|
static void Analyse(CMIPS*, uint32, uint32);
|
|
|
|
private:
|
|
static uint32 FindBlockStart(CMIPS*, uint32);
|
|
};
|