aboutsummaryrefslogtreecommitdiff
path: root/target/mips/tcg/system/semihosting-stub.c
diff options
context:
space:
mode:
Diffstat (limited to 'target/mips/tcg/system/semihosting-stub.c')
-rw-r--r--target/mips/tcg/system/semihosting-stub.c16
1 files changed, 16 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..bb1f7aa
--- /dev/null
+++ b/target/mips/tcg/system/semihosting-stub.c
@@ -0,0 +1,16 @@
+/*
+ * MIPS semihosting stub
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ * Copyright (c) 2024 Linaro Ltd.
+ * Authors:
+ * Philippe Mathieu-Daudé
+ */
+
+#include "qemu/osdep.h"
+#include "internal.h"
+
+void mips_semihosting(CPUMIPSState *env)
+{
+ g_assert_not_reached();
+}