| 1 | /* |
| 2 | * Stubs for platforms different from ARM |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0-or-later |
| 5 | */ |
| 6 | |
| 7 | #include "qemu/osdep.h" |
| 8 | #include "semihosting/semihost.h" |
| 9 | |
| 10 | bool semihosting_arm_compatible(void) |
| 11 | { |
| 12 | return false; |
| 13 | } |
| 14 | |
| 15 | void semihosting_arm_compatible_init(void) |
| 16 | { |
| 17 | g_assert_not_reached(); |
| 18 | } |