diff options
Diffstat (limited to 'target/mips/tcg/system/semihosting-stub.c')
-rw-r--r-- | target/mips/tcg/system/semihosting-stub.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/target/mips/tcg/system/semihosting-stub.c b/target/mips/tcg/system/semihosting-stub.c new file mode 100644 index 0000000..7ae27d7 --- /dev/null +++ b/target/mips/tcg/system/semihosting-stub.c @@ -0,0 +1,15 @@ +/* + * MIPS semihosting stub + * + * SPDX-FileContributor: Philippe Mathieu-Daudé <philmd@linaro.org> + * SPDX-FileCopyrightText: 2024 Linaro Ltd. + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#include "qemu/osdep.h" +#include "internal.h" + +void mips_semihosting(CPUMIPSState *env) +{ + g_assert_not_reached(); +} |