aboutsummaryrefslogtreecommitdiff
path: root/apps/b.c
blob: 504a5fde63bc2a7cf8f35440ed2e08ba54842c85 (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("\nB loaded.\n");
	while (1) {
		print("B");
	}
}