aboutsummaryrefslogtreecommitdiff
path: root/Semestr 4/ask/lista8/start.c
blob: a875ace0c6a9718a495da3c87b30ec7ff595a577 (plain)
1
2
3
4
5
6
7
8
int is_even(long);

void _start(void) {
  asm volatile(
    "syscall"
    : /* no output */
    : "a" (0x3c), "D" (is_even(42)));
}