From 211d2594f9d7f0ce47932c1e67568d0a7cedf2ad Mon Sep 17 00:00:00 2001 From: Alexander Rosenberg Date: Thu, 9 Feb 2023 08:33:50 -0800 Subject: [PATCH] Change from commend to .arch directive --- arm32-hello-world/main.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm32-hello-world/main.s b/arm32-hello-world/main.s index 06cd480..9048f8a 100644 --- a/arm32-hello-world/main.s +++ b/arm32-hello-world/main.s @@ -1,4 +1,4 @@ -@ armv7 +.arch armv7a .data msg: .asciz "Hello World!\n"