repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding upstream version 3.62+dfsg.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
sys
/
cfarcall.c
blob
7c681fc58f44a992c0428233f7f220b74fdf770c
1
/*
2
* cfarcall.c
3
*/
4
5
#include <com32.h>
6
7
int
__cfarcall
(
uint16_t
cs
,
uint16_t
ip
,
8
const void
*
stack
,
uint32_t
stack_size
)
9
{
10
return
__com32
.
cs_cfarcall
((
cs
<<
16
)+
ip
,
stack
,
stack_size
);
11
}