2 * linux-user semihosting console
5 * Written by Alex Bennée <alex.bennee@linaro.org>
7 * SPDX-License-Identifier: GPL-3.0-or-later
10 #define SYS_READC 0x07
20 printf("Semihosting Console Test\n");
21 printf("hit X to exit:");
24 c
= __semi_call(SYS_READC
, 0);
25 printf("got '%c'\n", c
);