aboutsummaryrefslogtreecommitdiff
path: root/apps/a.c
blob: b49e7f994be5e0025c9feb87715fdd6394158cc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// MIT License, Copyright (c) 2020 Marvin Borner

#include <def.h>
#include <print.h>

void main()
{
	print("\nA loaded.\n");
	while (1) {
		print("A");
	}
}