summaryrefslogtreecommitdiffstats
path: root/zpu/roadshow/roadshow/helloworld/test.c
blob: 8c3364053c4b3268abdff5aa8649d9a424284cea (plain)
1
2
3
4
5
6
7
8
9
10
11
int main(int argc, char **argv)
{
	for (;;)
	{
		int c;
		printf("Hello world!\n");
		printf("Press any key!\n");
		c=inbyte();
		printf("You pressed (%02x) '%c'\n", c, c);
	}
}
OpenPOWER on IntegriCloud