vm86frame
x86bios_vmf2emu(struct vm86frame *vmf, struct x86emu_regs *regs)
struct vm86frame vmf;
struct vm86frame vmf;
x86bios_emu2vmf(struct x86emu_regs *regs, struct vm86frame *vmf)
ASSYM(VM86_FRAMESIZE, sizeof(struct vm86frame));
struct vm86frame vmf;
signo = vm86_emulate((struct vm86frame *)frame);
signo = vm86_emulate((struct vm86frame *)frame);
vm86_trap((struct vm86frame *)frame);
PUSH(u_short x, struct vm86frame *vmf)
PUSHL(u_int x, struct vm86frame *vmf)
POP(struct vm86frame *vmf)
POPL(struct vm86frame *vmf)
vm86_emulate(struct vm86frame *vmf)
pcb->vm86_frame = vm86paddr - sizeof(struct vm86frame);
extern int vm86_bioscall(struct vm86frame *);
extern void vm86_biosret(struct vm86frame *);
pcb->vm86_frame = vm86paddr - sizeof(struct vm86frame);
void vm86_prepcall(struct vm86frame *);
vm86_prepcall(struct vm86frame *vmf)
vm86_trap(struct vm86frame *vmf)
void (*p)(struct vm86frame *);
p = (void (*)(struct vm86frame *))((uintptr_t)vm86_biosret +
vm86_intcall(int intnum, struct vm86frame *vmf)
int (*p)(struct vm86frame *);
p = (int (*)(struct vm86frame *))((uintptr_t)vm86_bioscall +
vm86_datacall(int intnum, struct vm86frame *vmf, struct vm86context *vmc)
int (*p)(struct vm86frame *);
p = (int (*)(struct vm86frame *))((uintptr_t)vm86_bioscall +
struct vm86frame vmf;
extern int vm86_emulate(struct vm86frame *);
extern void vm86_trap(struct vm86frame *);
extern int vm86_intcall(int, struct vm86frame *);
extern int vm86_datacall(int, struct vm86frame *, struct vm86context *);
struct vm86frame vmf;