blob: 2851e8e4a906171088bfb42e0fbfd0d19191d0fb (
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 <sys.h>
void main()
{
print("Init loaded.\n");
sys1(SYS_EXEC, (int)"/a");
while (1) {
print("b");
};
}
|