From 917fff1914f082c9eefdfdc400ecb347146c8382 Mon Sep 17 00:00:00 2001 From: Amelia Coutard Date: Sun, 26 Feb 2023 15:28:37 +0100 Subject: [PATCH] Moved .section .text where it makes sense --- test_module/test.S | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test_module/test.S b/test_module/test.S index aa7710a..0a9f3fa 100644 --- a/test_module/test.S +++ b/test_module/test.S @@ -1,6 +1,7 @@ +.section .text + .globl _start _start: - .section .text mov $65, %rdi syscall mov $67, %rdi -- 2.47.0