Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
19 lines
293 B
C
19 lines
293 B
C
/*
|
|
* Stubs for platforms different from ARM
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "semihosting/semihost.h"
|
|
|
|
bool semihosting_arm_compatible(void)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void semihosting_arm_compatible_init(void)
|
|
{
|
|
g_assert_not_reached();
|
|
}
|