Home | History | Annotate | Download | only in config

Lines Matching refs:op_end

893 get_operands (unsigned int noperands, char *op_end, struct h8_op *operand)
895 char *ptr = op_end;
941 get_mova_operands (char *op_end, struct h8_op *operand)
943 char *ptr = op_end;
1922 char *op_end;
1937 for (op_start = op_end = str;
1938 *op_end != 0 && *op_end != ' ';
1939 op_end++)
1941 if (*op_end == '.')
1943 dot = op_end + 1;
1944 *op_end = 0;
1945 op_end += 2;
1948 else if (*op_end == '/' && ! slash)
1949 slash = op_end;
1952 if (op_end == op_start)
1956 c = *op_end;
1958 *op_end = 0;
1985 get_mova_operands (op_end, operand);
1988 get_rtsl_operands (op_end, operand);
1990 get_operands (instruction->noperands, op_end, operand);
1992 *op_end = c;