Lines Matching defs:emulation
77 /* see if the device tree already specifies the required emulation */
84 /* go through each emulation to see if they reconize it. FIXME -
112 os_emul_init(os_emul *emulation,
115 if (emulation != (os_emul*)0)
116 emulation->init(emulation->data, nr_cpus);
124 os_emul *emulation = cpu_os_emulation(processor);
125 if (emulation != (os_emul*)0 && emulation->system_call != 0)
126 emulation->system_call(processor, cia, emulation->data);
128 error("System call emulation not available\n");
137 os_emul *emulation = cpu_os_emulation(processor);
138 if (emulation != (os_emul*)0 && emulation->instruction_call != 0)
139 return emulation->instruction_call(processor, cia, ra, emulation->data);