Files
foc/kernel/fiasco/tool/preprocess/test/c-preproc.cpp
2013-01-11 17:00:47 +01:00

20 lines
221 B
C++

INTERFACE:
IMPLEMENTATION:
// set CS (missing from OSKIT)
#define set_cs(cs) \
asm volatile \
("ljmp %0,$1f \n1:" \
: : "i" (cs));
void
function (void)
{
#if 1
bar ();
#else
foo ();
#endif
}