diff mbox series

[4/6] target/tricore: Add close semihosting call

Message ID 20231015205913.264782-5-kbastian@mail.uni-paderborn.de
State New
Headers show
Series TriCore Semihosting | expand

Commit Message

Bastian Koppelmann Oct. 15, 2023, 8:59 p.m. UTC
Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
---
 target/tricore/tricore-semi.c | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
diff mbox series

Patch

diff --git a/target/tricore/tricore-semi.c b/target/tricore/tricore-semi.c
index 6f321391ef..2188ceeed0 100644
--- a/target/tricore/tricore-semi.c
+++ b/target/tricore/tricore-semi.c
@@ -164,6 +164,19 @@  static void tricore_vio_set_result(CPUTriCoreState *env, int retval,
     env->gpr_d[12] = tricore_vio_errno_h2g(host_errno);
 }
 
+static void tricore_vio_close(CPUTriCoreState *env)
+{
+    int fd = env->gpr_d[4];
+    int res = 0;
+    int err = 0;
+
+    if (fd > 2) {
+        res = close(fd);
+        err = errno;
+    }
+
+    tricore_vio_set_result(env, res, err);
+}
 
 static void tricore_vio_lseek(CPUTriCoreState *env)
 {
@@ -245,6 +258,9 @@  void helper_tricore_semihost(CPUTriCoreState *env, uint32_t pc)
 
     syscall = (int)env->gpr_d[12];
     switch (syscall) {
+    case SYS__CLOSE:
+        tricore_vio_close(env);
+        break;
     case SYS__LSEEK:
         tricore_vio_lseek(env);
         break;