aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/multiarch/arm-compat-semi/semiconsole.c
blob: 1d82efc589dbc5d6b775e753e4700fc26ed3b823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * linux-user semihosting console
 *
 * Copyright (c) 2019
 * Written by Alex Bennée <alex.bennee@linaro.org>
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 */

#define SYS_READC       0x07

#include <stdio.h>
#include <stdint.h>
#include "semicall.h"

int main(void)
{
    char c;

    printf("Semihosting Console Test\n");
    printf("hit X to exit:");

    do {
        c = __semi_call(SYS_READC, 0);
        printf("got '%c'\n", c);
    } while (c != 'X');

    return 0;
}