xref: /qemu/target/mips/tcg/system/semihosting-stub.c (revision f07a5674cf97b8473e5d06d7b1df9b51e97d553f)
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