Minor naming convention changes

This commit is contained in:
Jeff Parsons 2015-03-27 12:45:55 -07:00 • committed by jeffpar
commit f098335db9
5 changed files with 80 additions and 78 deletions

View file

@ -47,7 +47,7 @@ X86.opGrp6 = function GRP6()
if ((bModRM & 0x38) < 0x10) { // possible reg values: 0x00, 0x08, 0x10, 0x18, 0x20, 0x28, 0x30, 0x38
this.opFlags |= X86.OPFLAG.NOREAD;
}
this.aOpModGrpWord[bModRM].call(this, this.aOpGrp6, X86.fnGRPSrcNone);
this.aOpModGrpWord[bModRM].call(this, this.aOpGrp6, X86.fnSrcNone);
};
/**
@ -61,7 +61,7 @@ X86.opGrp7 = function GRP7()
if (!(bModRM & 0x10)) {
this.opFlags |= X86.OPFLAG.NOREAD;
}
this.aOpModGrpWord[bModRM].call(this, X86.aOpGrp7, X86.fnGRPSrcNone);
this.aOpModGrpWord[bModRM].call(this, X86.aOpGrp7, X86.fnSrcNone);
};
/**