1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2025-01-10 17:32:05 +05:30
2024-02-04 11:55:56 +03:00

30 lines
426 B
C

/*
* brexit.c
*
* Author: Intel A80486DX2-66
* License: Creative Commons Zero 1.0 Universal
*/
#include <stdio.h>
__attribute__((noreturn)) _Noreturn void Brexit(void);
__attribute__((noreturn))
_Noreturn
void Brexit(void) {
asm volatile (
"movl $0x7F, %%ebx\n\t"
"movl $1, %%eax\n\t"
"int $0x80"
:
:
: "eax", "ebx"
);
for (;;); // https://stackoverflow.com/a/15964365
}
int main(void) {
Brexit();
}