aboutsummaryrefslogtreecommitdiffstats
path: root/firmware/hello.c
blob: b7e0b9682d4e1c015b2fa291dae79dfd79632f5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// This is free and unencumbered software released into the public domain.
//
// Anyone is free to copy, modify, publish, use, compile, sell, or
// distribute this software, either in source code form or as a compiled
// binary, for any purpose, commercial or non-commercial, and by any
// means.

#include "firmware.h"

void hello(void)
{
	print_str("hello world\n");
}