1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-10 13:29:50 +00:00

Output remaining long labels

This commit is contained in:
Lauri Kasanen 2022-10-12 15:36:28 +03:00
parent 65907b1f10
commit db351b4228

View File

@ -447,6 +447,7 @@ void DefOutOfRangeLabels (void)
/* Output any labels that are out of the loaded code range */
{
unsigned long Addr;
unsigned i;
SeparatorLine ();
@ -469,5 +470,10 @@ void DefOutOfRangeLabels (void)
DefOutOfRangeLabel (Addr++);
}
/* 65816 long range */
for (i = 0; i < LongLabelsUsed; i++) {
DefOutOfRangeLabel (LongSymAddr[i]);
}
SeparatorLine ();
}