xref: /qemu/target/m68k/semihosting-stub.c (revision d64db833d6e3cbe9ea5f36342480f920f3675cea)
1 /*
2  *  m68k/ColdFire semihosting stub
3  *
4  * Copyright (c) 2024 Linaro Ltd.
5  *
6  * Authors:
7  *   Philippe Mathieu-Daudé
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 
12 #include "qemu/osdep.h"
13 #include "cpu.h"
14 
15 void do_m68k_semihosting(CPUM68KState *env, int nr)
16 {
17     g_assert_not_reached();
18 }
19