semihost-all.c 339 B

1234567891011121314151617
  1. /*
  2. * Semihosting Stubs for all targets
  3. *
  4. * Copyright (c) 2023 Linaro Ltd
  5. *
  6. * Stubs for all targets that don't actually do semihosting.
  7. *
  8. * SPDX-License-Identifier: GPL-2.0-or-later
  9. */
  10. #include "qemu/osdep.h"
  11. #include "semihosting/semihost.h"
  12. SemihostingTarget semihosting_get_target(void)
  13. {
  14. return SEMIHOSTING_TARGET_AUTO;
  15. }