xref: /openbmc/qemu/semihosting/user.c (revision d0b4cfa62937ce59bd88de5928ada687329be194)
1 /*
2  * Semihosting for user emulation
3  *
4  * Copyright (c) 2019 Linaro Ltd
5  *
6  * SPDX-License-Identifier: GPL-2.0-or-later
7  */
8 
9 #include "qemu/osdep.h"
10 #include "semihosting/semihost.h"
11 
12 bool semihosting_enabled(bool is_user)
13 {
14     return true;
15 }
16 
17 SemihostingTarget semihosting_get_target(void)
18 {
19     return SEMIHOSTING_TARGET_AUTO;
20 }
21