Home
last modified time | relevance | path

Searched refs:segoffs (Results 1 – 2 of 2) sorted by relevance

/openbmc/qemu/linux-user/
H A Dvm86.c214 uint32_t int_addr, segoffs, ssp; in do_int() local
225 segoffs = cpu_ldl_data(env, int_addr); in do_int()
226 if ((segoffs >> 16) == TARGET_BIOSSEG) in do_int()
229 intno, segoffs >> 16, segoffs & 0xffff); in do_int()
238 env->eip = segoffs & 0xffff; in do_int()
239 cpu_x86_load_seg(env, R_CS, segoffs >> 16); in do_int()
/openbmc/linux/arch/x86/kernel/
H A Dvm86_32.c499 unsigned long segoffs; in do_int() local
509 if (get_user(segoffs, intr_ptr)) in do_int()
511 if ((segoffs >> 16) == BIOSSEG) in do_int()
516 regs->pt.cs = segoffs >> 16; in do_int()
518 IP(regs) = segoffs & 0xffff; in do_int()