From 354aadfdc0774c8f629d95d05dddd18a202dde65 Mon Sep 17 00:00:00 2001 From: Olaf Seibert Date: Sun, 30 May 2021 21:52:08 +0200 Subject: [PATCH] Add comment about undef'd symbols that they can also be put in the main symbol table, since all code is made to work with that scenario. --- assemble_aux.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/assemble_aux.c b/assemble_aux.c index bc135cb..8b8286d 100644 --- a/assemble_aux.c +++ b/assemble_aux.c @@ -214,7 +214,9 @@ void implicit_gbl( add_sym(value->data.symbol->label, 0, SYMBOLFLAG_GLOBAL, &absolute_section, &implicit_st); } else { /* or add it to the undefined symbol table, - purely for listing purposes. */ + purely for listing purposes. + It also works to add it to symbol_st, + all code is carefully made for that. */ add_sym(value->data.symbol->label, 0, SYMBOLFLAG_UNDEFINED, &absolute_section, &undefined_st); } }