mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
General: Remove unimplemented function prototypes
This commit is contained in:
@ -20,7 +20,6 @@ class Interpreter : public CPUCoreBase
|
||||
public:
|
||||
void Init() override;
|
||||
void Shutdown() override;
|
||||
void Reset();
|
||||
void SingleStep() override;
|
||||
int SingleStepInner();
|
||||
|
||||
@ -28,8 +27,6 @@ public:
|
||||
void ClearCache() override;
|
||||
const char *GetName() override;
|
||||
|
||||
void Log();
|
||||
|
||||
static bool m_EndBlock;
|
||||
|
||||
static void unknown_instruction(UGeckoInstruction _inst);
|
||||
@ -269,7 +266,6 @@ public:
|
||||
static void crxor(UGeckoInstruction _inst);
|
||||
static void mcrf(UGeckoInstruction _inst);
|
||||
static void rfi(UGeckoInstruction _inst);
|
||||
static void rfid(UGeckoInstruction _inst);
|
||||
static void sync(UGeckoInstruction _inst);
|
||||
static void isync(UGeckoInstruction _inst);
|
||||
|
||||
|
@ -94,13 +94,9 @@ public:
|
||||
|
||||
void reg_imm(UGeckoInstruction inst);
|
||||
|
||||
void ps_sel(UGeckoInstruction inst);
|
||||
void ps_mr(UGeckoInstruction inst);
|
||||
void ps_sign(UGeckoInstruction inst); //aggregate
|
||||
void ps_arith(UGeckoInstruction inst); //aggregate
|
||||
void ps_mergeXX(UGeckoInstruction inst);
|
||||
void ps_maddXX(UGeckoInstruction inst);
|
||||
void ps_rsqrte(UGeckoInstruction inst);
|
||||
void ps_sum(UGeckoInstruction inst);
|
||||
void ps_muls(UGeckoInstruction inst);
|
||||
|
||||
|
@ -35,7 +35,6 @@ public:
|
||||
|
||||
bool Load(const std::string& filename); // Does not clear. Remember to clear first if that's what you want.
|
||||
bool Save(const std::string& filename);
|
||||
void Clean(const char *prefix);
|
||||
void Clear();
|
||||
void List();
|
||||
|
||||
|
Reference in New Issue
Block a user