From 6acf2971bd7cecf3d9d225475d3a7cc2b031bd2c Mon Sep 17 00:00:00 2001 From: Olaf Seibert Date: Fri, 8 May 2015 00:28:25 +0200 Subject: [PATCH] Add the "COM" flag to PSECT/CSECT: opposite of OVR. --- assemble.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/assemble.c b/assemble.c index ee4e94e..6708b9b 100644 --- a/assemble.c +++ b/assemble.c @@ -934,6 +934,8 @@ static int assemble( sect->flags |= PSECT_SAV; /* Is root */ } else if (strcmp(label, "OVR") == 0) { sect->flags |= PSECT_COM; /* Is common */ + } else if (strcmp(label, "CON") == 0) { + sect->flags &= ~PSECT_COM; /* Concatenated */ } else if (strcmp(label, "RW") == 0) { sect->flags &= ~PSECT_RO; /* Not read-only */ } else if (strcmp(label, "RO") == 0) {