Add the "COM" flag to PSECT/CSECT: opposite of OVR.

This commit is contained in:
Olaf Seibert 2015-05-08 00:28:25 +02:00
parent 98e782e41e
commit 6acf2971bd

View File

@ -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) {