view 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
line wrap: on
line source

main()
{
	printf("Hello-world demo app (fixed UART version) running\n");
	for (;;) {
		putchar('=');
		if (command_entry())
			command_dispatch();
	}
}