GTE: Implement DPCT

This commit is contained in:
Connor McLaughlin
2019-09-27 22:57:03 +10:00
parent fc74d08641
commit e8cd174732
3 changed files with 41 additions and 14 deletions

View File

@ -62,6 +62,7 @@ private:
void RTPS(const s16 V[3], bool sf, bool lm, bool last);
void NCCS(const s16 V[3], bool sf, bool lm);
void NCDS(const s16 V[3], bool sf, bool lm);
void DPCS(const u8 color[3], bool sf, bool lm);
void Execute_RTPS(Instruction inst);
void Execute_RTPT(Instruction inst);
@ -75,6 +76,7 @@ private:
void Execute_NCDT(Instruction inst);
void Execute_MVMVA(Instruction inst);
void Execute_DPCS(Instruction inst);
void Execute_DPCT(Instruction inst);
Regs m_regs = {};
};