summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux-4.02/com32/lib/sys/farcall.c
blob: 988ee6d23e8bc4e25642d1694aa41c6648b2f622 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * farcall.c
 */

#include <com32.h>

static inline uint32_t eflags(void)
{
    uint32_t v;

    asm volatile("pushfl ; popl %0" : "=rm" (v));
    return v;
}

void __farcall(uint16_t cs, uint16_t ip,
	       const com32sys_t * ireg, com32sys_t * oreg)
{
    com32sys_t xreg = *ireg;

    /* Enable interrupts if and only if they are enabled in the caller */
    xreg.eflags.l = (xreg.eflags.l & ~EFLAGS_IF) | (eflags() & EFLAGS_IF);

    __com32.cs_farcall((cs << 16) + ip, &xreg, oreg);
}