xref: /qemu/tests/tcg/s390x/console.c (revision c2485ea402449dd19d51b2d7db7060afb2330b79)
1*c2485ea4SIlya Leoshkevich /*
2*c2485ea4SIlya Leoshkevich  * Console code for multiarch tests.
3*c2485ea4SIlya Leoshkevich  * Reuses the pc-bios/s390-ccw implementation.
4*c2485ea4SIlya Leoshkevich  *
5*c2485ea4SIlya Leoshkevich  * SPDX-License-Identifier: GPL-2.0-or-later
6*c2485ea4SIlya Leoshkevich  */
7*c2485ea4SIlya Leoshkevich #include "../../../pc-bios/s390-ccw/sclp.c"
8*c2485ea4SIlya Leoshkevich 
9*c2485ea4SIlya Leoshkevich void __sys_outc(char c)
10*c2485ea4SIlya Leoshkevich {
11*c2485ea4SIlya Leoshkevich     write(1, &c, sizeof(c));
12*c2485ea4SIlya Leoshkevich }
13