2 * Semihosting Stubs for system emulation
4 * Copyright (c) 2019 Linaro Ltd
6 * Stubs for system targets that don't actually do semihosting.
8 * SPDX-License-Identifier: GPL-2.0-or-later
11 #include "qemu/osdep.h"
12 #include "qemu/option.h"
13 #include "qemu/error-report.h"
14 #include "semihosting/semihost.h"
17 QemuOptsList qemu_semihosting_config_opts
= {
19 .head
= QTAILQ_HEAD_INITIALIZER(qemu_semihosting_config_opts
.head
),
25 /* Queries to config status default to off */
26 bool semihosting_enabled(bool is_user
)
32 * All the rest are empty subs. We could g_assert_not_reached() but
33 * that adds extra weight to the final binary. Waste not want not.
35 void qemu_semihosting_enable(void)
39 int qemu_semihosting_config_options(const char *optstr
)
44 const char *semihosting_get_arg(int i
)
49 int semihosting_get_argc(void)
54 const char *semihosting_get_cmdline(void)
59 void semihosting_arg_fallback(const char *file
, const char *cmd
)
63 void qemu_semihosting_chardev_init(void)