master
c 18 lines 298 Bytes
Raw
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 }