syscalls.c (4ea5fe997db4c5d893b69072f488880c07857a54) syscalls.c (c566080cd37fe328077a3c49d7fd248ce2a06bfe)
1/*
2 * Syscall implementations for semihosting.
3 *
4 * Copyright (c) 2022 Linaro
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8
9#include "qemu/osdep.h"
1/*
2 * Syscall implementations for semihosting.
3 *
4 * Copyright (c) 2022 Linaro
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8
9#include "qemu/osdep.h"
10#include "exec/gdbstub.h"
11#include "cpu.h"
10#include "cpu.h"
11#include "gdbstub/syscalls.h"
12#include "semihosting/guestfd.h"
13#include "semihosting/syscalls.h"
14#include "semihosting/console.h"
15#ifdef CONFIG_USER_ONLY
16#include "qemu.h"
17#else
18#include "semihosting/softmmu-uaccess.h"
19#endif

--- 958 unchanged lines hidden ---
12#include "semihosting/guestfd.h"
13#include "semihosting/syscalls.h"
14#include "semihosting/console.h"
15#ifdef CONFIG_USER_ONLY
16#include "qemu.h"
17#else
18#include "semihosting/softmmu-uaccess.h"
19#endif

--- 958 unchanged lines hidden ---