From bce4e339e2ddda24a012293408b9da00c9aa33b4 Mon Sep 17 00:00:00 2001 From: Perry Kivolowitz Date: Thu, 2 May 2024 09:29:44 -0500 Subject: [PATCH] added M series code without macros --- section_1/hello_world/README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/section_1/hello_world/README.md b/section_1/hello_world/README.md index 5e6a89a..36f6cb3 100644 --- a/section_1/hello_world/README.md +++ b/section_1/hello_world/README.md @@ -740,7 +740,11 @@ The only changes are the handling of external symbols like `main` and `gcc no_macros.s` -This source code will assembly and link correctly on the M series Macs. +The code above source code will assembly and link correctly on the M +series Macs. The suggestion to add the version without the macro suite +comes from `laurent b` on `github`. They correctly pointed out that +jumping directly into macros in this first chapter was a pretty jarring +leap. Next we'll consider the version using our macro suite which will assemble and build on both the M series and ARM-based Linux systems.