setup gcc minimum build env

This commit is contained in:
eggman 2016-06-22 23:08:09 +09:00
parent ddad8cdcfd
commit 4e0103b0f5
52 changed files with 16714 additions and 0 deletions

12
src/main.c Normal file
View file

@ -0,0 +1,12 @@
#include "rtl8195a.h"
int main(void)
{
int i=0;
while (1) {
DiagPrintf("Hello World : %d %d\r\n", i++);
HalDelayUs(1000000);
}
}