mirror of
https://github.com/cc65/cc65.git
synced 2024-12-26 08:32:00 +00:00
Output remaining long labels
This commit is contained in:
parent
65907b1f10
commit
db351b4228
@ -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 ();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user