コード例 #1
0
ファイル: DesOpcode.cs プロジェクト: SavchukSergey/atma
 public override void Compile(AsmParser parser, AsmSection output)
 {
     var translation = new OpcodeTranslation { Opcode = _opcodeTemplate };
     var dest = parser.ReadDesRound();
     translation.DesRound = dest;
     output.EmitCode(translation.Opcode);
 }