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); }
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); }
public static string ToHumanReadable(this Format3OpCode opCode) { return("MOVCMPADDSUB".Substring((int)opCode * 3, 3)); }