aboutsummaryrefslogtreecommitdiff
path: root/apps/b.c
blob: 1ed92497d8e72685c98d5c928835dd93838b9652 (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");
	}
}