summary refs log tree commit diff stats
path: root/target/m68k/semihosting-stub.c
blob: dbe669cc5f654fdaa957ebca1ed6b2e9db69d8c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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();
}