From 36db00dc79a9a4a487181eb120abc50f4f2f7937 Mon Sep 17 00:00:00 2001 From: Olaf Seibert Date: Sun, 14 Nov 2021 22:37:15 +0100 Subject: [PATCH] Name some unnamed special sections for easier recognition. --- assemble_globals.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/assemble_globals.c b/assemble_globals.c index 014693b..e0ac75e 100644 --- a/assemble_globals.c +++ b/assemble_globals.c @@ -69,20 +69,20 @@ SECTION *last_dot_section; /* ...and its program section */ the assembler: */ SECTION register_section = { - "", SECTION_REGISTER, 0, 0, 0, 0 + "*REGISTERS*", SECTION_REGISTER, 0, 0, 0, 0 }; /* the section containing the registers */ SECTION pseudo_section = { - "", SECTION_PSEUDO, 0, 0, 0, 0 + "*PSEUDO*", SECTION_PSEUDO, 0, 0, 0, 0 }; /* the section containing the pseudo-operations */ SECTION instruction_section = { - ". ABS.", SECTION_INSTRUCTION, 0, 0, 0, 0 + "*INSTR*", SECTION_INSTRUCTION, 0, 0, 0, 0 }; /* the section containing instructions */ SECTION macro_section = { - "", SECTION_SYSTEM, 0, 0, 0, 0 + "*MACRO*", SECTION_SYSTEM, 0, 0, 0, 0 }; /* Section for macros */ /* These are real psects that get written out to the object file */