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
Add memtest support.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
sys
/
cfarcall.c
blob
fca818b2cc633a3101ac7e08d12010bbc8507aa8
1
/*
2
* cfarcall.c
3
*/
4
5
#include <com32.h>
6
7
int
__cfarcall
(
uint16_t
cs
,
uint16_t
ip
,
const void
*
stack
,
uint32_t
stack_size
)
8
{
9
return
__com32
.
cs_cfarcall
((
cs
<<
16
) +
ip
,
stack
,
stack_size
);
10
}