From f7c5f1b431e76f9807636d3367ca8712dce491dd Mon Sep 17 00:00:00 2001 From: Kevin Thomas Date: Sat, 18 Oct 2025 13:01:10 -0400 Subject: [PATCH] Rename loop label for clarity --- RA-0x0001-GPIO-Output/main.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RA-0x0001-GPIO-Output/main.s b/RA-0x0001-GPIO-Output/main.s index 8274a2a..7cc3ec7 100644 --- a/RA-0x0001-GPIO-Output/main.s +++ b/RA-0x0001-GPIO-Output/main.s @@ -135,7 +135,7 @@ main: BL Delay_500ms // ~500 ms delay BL GPIO16_Clear // set GPIO16 low BL Delay_500ms // ~500 ms delay - B Loop // loop forever + B .Loop // loop forever .Pop_Registers: POP {R4-R12, LR} // pop registers R4-R12, LR from the stack BX LR // return to caller