mirror of
https://github.com/open-simh/simtools.git
synced 2026-02-12 19:08:49 +00:00
Also add NOSAV flag to PSECT.
This commit is contained in:
@@ -932,6 +932,8 @@ static int assemble(
|
||||
sect->flags |= PSECT_REL; /* Is relative */
|
||||
} else if (strcmp(label, "SAV") == 0) {
|
||||
sect->flags |= PSECT_SAV; /* Is root */
|
||||
} else if (strcmp(label, "NOSAV") == 0) {
|
||||
sect->flags &= ~PSECT_SAV; /* Is not root */
|
||||
} else if (strcmp(label, "OVR") == 0) {
|
||||
sect->flags |= PSECT_COM; /* Is common */
|
||||
} else if (strcmp(label, "CON") == 0) {
|
||||
|
||||
Reference in New Issue
Block a user