1 /* 2 * m68k/ColdFire semihosting stub 3 * 4 * SPDX-FileContributor: Philippe Mathieu-Daudé <philmd@linaro.org> 5 * SPDX-FileCopyrightText: 2024 Linaro Ltd. 6 * SPDX-License-Identifier: GPL-2.0-or-later 7 */ 8 9 #include "qemu/osdep.h" 10 #include "cpu.h" 11 12 void do_m68k_semihosting(CPUM68KState *env, int nr) 13 { 14 g_assert_not_reached(); 15 } 16