Files
moslab-code/src/fiasco/tool/preprocess/test/c-preproc.cpp
2025-09-12 15:55:45 +02: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
}