You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qemu/semihosting/arm-compat-semi-stub.c

20 lines
311 B
C

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