Also add NOSAV flag to PSECT.

This commit is contained in:
Olaf Seibert 2015-05-08 00:41:18 +02:00
parent 6acf2971bd
commit 3b6637f82d

View File

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