Home | History | Annotate | Download | only in opcodes

Lines Matching defs:thisnib

73 		   int thisnib,
83 *cst = thisnib & 3;
365 int thisnib;
369 thisnib = data[len / 2];
370 thisnib = (len & 1) ? (thisnib & 0xf) : ((thisnib / 16) & 0xf);
376 if (looking_for != thisnib)
383 if (!((thisnib & 0x8) != 0))
387 thisnib &= 0x7;
391 if (!((thisnib & 0x8) == 0))
399 if (!((thisnib & 0x4) != 0))
403 thisnib &= 0xb;
407 if (!((thisnib & 0x4) == 0))
414 if (!((thisnib & 0x2) != 0))
418 thisnib &= 0xd;
422 if (!((thisnib & 0x2) == 0))
430 if (!((thisnib & 0x1) != 0))
434 thisnib &= 0xe;
438 if (!((thisnib & 0x1) == 0))
447 if (thisnib != 0)
459 if ((looking_for & 7) != (thisnib & 7))
462 cst[opnr] = (thisnib & 0x8) ? 2 : 1;
486 extract_immediate (stream, looking_for, thisnib,
501 regno[opnr] = thisnib;
505 thisnib &= 7;
506 if (((looking_for & MODE) == CCR && (thisnib != C_CCR))
507 || ((looking_for & MODE) == EXR && (thisnib != C_EXR))
508 || ((looking_for & MODE) == MACH && (thisnib != C_MACH))
509 || ((looking_for & MODE) == MACL && (thisnib != C_MACL))
510 || ((looking_for & MODE) == VBR && (thisnib != C_VBR))
511 || ((looking_for & MODE) == SBR && (thisnib != C_SBR)))
514 && (thisnib != C_CCR && thisnib != C_EXR))
516 && (thisnib != C_VBR && thisnib != C_SBR))
518 && (thisnib != C_MACH && thisnib != C_MACL)))
521 && (thisnib != C_CCR && thisnib != C_EXR
522 && thisnib != C_VBR && thisnib != C_SBR)))
525 regno[opnr] = thisnib;
534 cst[opnr] = thisnib;
575 dispregno[opnr] = thisnib & 7;
579 switch (thisnib)
602 cst[opnr] = thisnib & 0x7;
609 cst[opnr] = thisnib & 0x3;
613 cst[opnr] = (thisnib == 3);