Sign in
android
/
platform
/
external
/
syslinux
/
refs/heads/oreo-m4-s1-release
/
.
/
com32
/
lib
/
sys
/
cfarcall.c
blob: fca818b2cc633a3101ac7e08d12010bbc8507aa8 [
file
] [
log
] [
blame
] [
edit
]
/*
* cfarcall.c
*/
#include
<com32.h>
int
__cfarcall
(
uint16_t
cs
,
uint16_t
ip
,
const
void
*
stack
,
uint32_t
stack_size
)
{
return
__com32
.
cs_cfarcall
((
cs
<<
16
)
+
ip
,
stack
,
stack_size
);
}