[Decompiler] bitfield support and clean up of DMA (#350)

* get to vif

* support basic bitfield access

* make bitfields in dma work

* clean up dma

* fix merge conflict
This commit is contained in:
water111
2021-04-11 16:07:01 -04:00
committed by GitHub
parent 64ae2d6d39
commit e5f0fecf17
39 changed files with 4524 additions and 221 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ InstructionParser::InstructionParser() {
InstructionKind::BGTZ, InstructionKind::BLTZL, InstructionKind::BGTZL,
InstructionKind::BGEZL, InstructionKind::MTC1, InstructionKind::MFC1,
InstructionKind::MFLO, InstructionKind::MFHI, InstructionKind::MTLO1,
InstructionKind::MFLO1}) {
InstructionKind::MFLO1, InstructionKind::SYNCL}) {
auto& info = gOpcodeInfo[int(i)];
if (info.defined) {
m_opcode_name_lookup[info.name] = int(i);