comparison target-utils/helloapp/main-fixeduart.c @ 516:8bdbae4c0e53

target-utils/helloapp: build boot-ROM-based and fixed-UART versions
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 29 May 2019 05:40:51 +0000
parents
children
comparison
equal deleted inserted replaced
515:455c394c014d 516:8bdbae4c0e53
1 main()
2 {
3 printf("Hello-world demo app (fixed UART version) running\n");
4 for (;;) {
5 putchar('=');
6 if (command_entry())
7 command_dispatch();
8 }
9 }