1
0
Fork 0
qemu/target/m68k/semihosting-stub.c
Daniel Baumann ea34ddeea6
Adding upstream version 1:10.0.2+ds.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 14:27:05 +02:00

18 lines
298 B
C

/*
* 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();
}