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