From a2918b444da3f517a094da39db9007da465c3a8e Mon Sep 17 00:00:00 2001 From: pkivolowitz Date: Wed, 2 Nov 2022 12:08:31 -0500 Subject: [PATCH] Update main.s --- projects/walkies/main.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/walkies/main.s b/projects/walkies/main.s index cf89c10..7e705fe 100644 --- a/projects/walkies/main.s +++ b/projects/walkies/main.s @@ -100,7 +100,7 @@ Emit: stp x29, x30, [sp, -16]! ret -/* Pad - prints w0 spaces to the console. It does this using +/* Pad - prints counter spaces to the console. It does this using a for loop printing one space at a time. A reasonable optimization would be to create a large array of spaces and use the length parameter to write() to replace the loop.