mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-13 23:36:03 +00:00
Also add NOSAV flag to PSECT.
This commit is contained in:
parent
6acf2971bd
commit
3b6637f82d
@ -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) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user