From 1dae5062e9c87c76e56520228c7cba528d238b9c Mon Sep 17 00:00:00 2001 From: mrdudz Date: Thu, 14 Jul 2022 22:39:29 +0200 Subject: [PATCH] more verbose comment --- src/cc65/codegen.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cc65/codegen.c b/src/cc65/codegen.c index c79863d0e..326d751b6 100644 --- a/src/cc65/codegen.c +++ b/src/cc65/codegen.c @@ -461,7 +461,8 @@ void g_importstartup (void) void g_importmainargs (void) -/* Forced import of a special symbol that handles arguments to main */ +/* Forced import of a special symbol that handles arguments to main. This will + happen only when the compiler sees a main function that takes arguments. */ { AddTextLine ("\t.forceimport\tinitmainargs"); }