fix hello world

This commit is contained in:
eggman 2016-06-25 10:08:23 +09:00
parent 4835722d57
commit c5193c485c

View file

@ -5,7 +5,7 @@ int main(void)
int i=0;
while (1) {
DiagPrintf("Hello World : %d %d\r\n", i++);
DiagPrintf("Hello World : %d\r\n", i++);
HalDelayUs(1000000);
}
}