summary refs log tree commit diff stats
path: root/semihosting/arm-compat-semi-stub.c
blob: bfa3681e2676dcdd4ad11283979cfe53eda4dd4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Stubs for platforms different from ARM
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#include "qemu/osdep.h"
#include "semihosting/semihost.h"
#include <glib.h>

bool semihosting_arm_compatible(void)
{
    return false;
}

void semihosting_arm_compatible_init(void)
{
    g_assert_not_reached();
}