Lines Matching defs:byte
17 unsigned char byte;
52 * least one byte (two nibbles), three nibbles, or two bytes (four
54 * The byte member of each instruction format type entry defines
55 * within which byte of an instruction the third (and fourth) nibble
57 * needs to be applied on this byte in order to get the third (and
62 * A special case are instruction formats with 1-byte opcodes. In this
63 * case the byte member always is zero, so that the mask is applied on
64 * the (only) byte that contains the opcode.
68 .byte = 0,
83 .byte = 1,
93 .byte = 1,
108 .byte = 5,
236 if (insn->type->byte != 0)
251 if (group && (!strncmp(group->opcode, insn->opcode, 2) || group->type->byte == 0)) {
282 if (insn->type->byte == 0)
292 printf("\t/* 1-byte opcode instructions */ \\\n");
295 if (insn->type->byte != 0)
312 printf("\t{ .opcode = 0x%.2s, .mask = 0x%02x, .byte = %d, .offset = %d, .count = %d }, \\\n",
313 group->opcode, group->type->mask, group->type->byte, group->offset, group->count);