xref: /qemu/target/mips/tcg/system/semihosting-stub.c (revision 70ce076fa6dff60585c229a4b641b13e64bf03cf)
1 /*
2  *  MIPS semihosting stub
3  *
4  * SPDX-License-Identifier: GPL-2.0-or-later
5  * Copyright (c) 2024 Linaro Ltd.
6  * Authors:
7  *   Philippe Mathieu-Daudé
8  */
9 
10 #include "qemu/osdep.h"
11 #include "internal.h"
12 
13 void mips_semihosting(CPUMIPSState *env)
14 {
15     g_assert_not_reached();
16 }
17