mirror of
https://github.com/XunilGroup/XunilOS.git
synced 2026-04-25 11:49:03 +02:00
using sti in syscalls, remove a bunch of old imports and code, move keyboard scancode handling to keyboard.rs, add a new KeyboardEvent based layout where press/release and unicode is handled, add a kbd_read syscall which writes kbd events to a userspace buffer, add a usercopy file which provides safe copying functions to userspace
7 lines
127 B
C
7 lines
127 B
C
#include "../../libxunil/include/stdio.h"
|
|
|
|
int main(int argc, char **argv) {
|
|
printf("%s\n", "Hello, world!");
|
|
exit(0);
|
|
}
|