mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-14 07:39:37 +00:00
Add the "COM" flag to PSECT/CSECT: opposite of OVR.
This commit is contained in:
parent
98e782e41e
commit
6acf2971bd
@ -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) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user