1 /* ----------------------------------------------------------------------- *
3 * Copyright 2009-2010 Intel Corporation; author: H. Peter Anvin
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
8 * Boston MA 02110-1301, USA; either version 2 of the License, or
9 * (at your option) any later version; incorporated herein by reference.
11 * ----------------------------------------------------------------------- */
16 * Simple wrapper to call 16-bit core functions from 32-bit code
23 __export
const com32sys_t zero_regs
; /* Common all-zero register set */
25 static inline uint32_t eflags(void)
29 asm volatile("pushfl ; popl %0" : "=rm" (v
));
33 __export
void call16(void (*func
)(void), const com32sys_t
*ireg
,
36 com32sys_t xreg
= *ireg
;
38 /* Enable interrupts if and only if they are enabled in the caller */
39 xreg
.eflags
.l
= (xreg
.eflags
.l
& ~EFLAGS_IF
) | (eflags() & EFLAGS_IF
);
41 core_farcall((size_t)func
, &xreg
, oreg
);