aboutsummaryrefslogtreecommitdiff
path: root/target/m68k/semihosting-stub.c
diff options
context:
space:
mode:
Diffstat (limited to 'target/m68k/semihosting-stub.c')
-rw-r--r--target/m68k/semihosting-stub.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/target/m68k/semihosting-stub.c b/target/m68k/semihosting-stub.c
new file mode 100644
index 0000000..dbe669c
--- /dev/null
+++ b/target/m68k/semihosting-stub.c
@@ -0,0 +1,18 @@
+/*
+ * m68k/ColdFire semihosting stub
+ *
+ * Copyright (c) 2024 Linaro Ltd.
+ *
+ * Authors:
+ * Philippe Mathieu-Daudé
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#include "qemu/osdep.h"
+#include "cpu.h"
+
+void do_m68k_semihosting(CPUM68KState *env, int nr)
+{
+ g_assert_not_reached();
+}