blob: 515de3d2c04da6885f029040cce06e734fd2c126 [file] [log] [blame]
Richard Hendersond0b4cfa2025-03-12 17:16:05 -07001/*
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
12bool semihosting_enabled(bool is_user)
13{
14 return true;
15}
16
17SemihostingTarget semihosting_get_target(void)
18{
19 return SEMIHOSTING_TARGET_AUTO;
20}