Home | History | Annotate | Download | only in opcodes

Lines Matching defs:ibytes

204   unsigned char       ibytes[4];
209 status = info->read_memory_func (memaddr, ibytes, 4, info);
218 inst = (((unsigned) ibytes[0] << 24) | (ibytes[1] << 16)
219 | (ibytes[2] << 8) | ibytes[3]);
221 inst = (((unsigned) ibytes[3] << 24) | (ibytes[2] << 16)
222 | (ibytes[1] << 8) | ibytes[0]);