init: import project

Signed-off-by: Mahyar Koshkouei <mk@deltabeard.com>
This commit is contained in:
Mahyar Koshkouei
2022-03-19 17:02:16 +00:00
commit 1e2719739d
5 changed files with 2159 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
/* C Headers */
#include <stdio.h>
/* RP2040 Headers */
#include <hardware/sync.h>
/* Project headers */
#include "hedley.h"
int main(void)
{
puts("Hello World!");
/* Sleep forever. */
while(1)
__wfi();
HEDLEY_UNREACHABLE();
}