blob: 91f50830f0c5bacedf7d893c1dc801ef44e24b1e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// MIT License, Copyright (c) 2020 Marvin Borner
#include <def.h>
#include <print.h>
#include <str.h>
void main()
{
print("Init loaded\n");
__asm__ volatile("int $0x80");
while (1) {
print("b");
};
}
|