1 /* 2 * MIPS semihosting stub 3 * 4 * SPDX-FileContributor: Philippe Mathieu-Daudé <philmd@linaro.org> 5 * SPDX-FileCopyrightText: 2024 Linaro Ltd. 6 * SPDX-License-Identifier: GPL-2.0-or-later 7 */ 8 9 #include "qemu/osdep.h" 10 #include "internal.h" 11 12 void mips_semihosting(CPUMIPSState *env) 13 { 14 g_assert_not_reached(); 15 } 16