示例#1
0
 public void Emit(Format3OpCode opCode, LowRegister rd, byte value)
 {
     var fluentComment=opCode.ToHumanReadable().MyConcat(" ", rd, ",#", value);
       EmitHelper(rd, 3, fluentComment, 1, 3, (int)opCode, 2, rd.Index, 3, value, 8);
 }
示例#2
0
        public void Emit(Format3OpCode opCode, LowRegister rd, byte value)
        {
            var fluentComment = opCode.ToHumanReadable().MyConcat(" ", rd, ",#", value);

            EmitHelper(rd, 3, fluentComment, 1, 3, (int)opCode, 2, rd.Index, 3, value, 8);
        }
示例#3
0
 public static string ToHumanReadable(this Format3OpCode opCode)
 {
     return("MOVCMPADDSUB".Substring((int)opCode * 3, 3));
 }