From b8cba1abd732d5ae6bbc3567269002e7bd1aafca Mon Sep 17 00:00:00 2001 From: Quentin Legot Date: Tue, 4 Apr 2023 17:25:51 +0200 Subject: [PATCH] Change Halt to Shutdown in sys.s --- test/userlib/sys.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/userlib/sys.s b/test/userlib/sys.s index 970117b..7b7e3da 100644 --- a/test/userlib/sys.s +++ b/test/userlib/sys.s @@ -63,8 +63,8 @@ __start: * ------------------------------------------------------------- */ - .globl Halt - .type __Halt, @function + .globl Shutdown + .type __Shutdown, @function Shutdown: addi a7,zero,SC_HALT ecall