mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +00:00
Fixed a bug with different load/run areas, where a segment was marked as
dumped if the run area preceeded the load area, so it was not output into the file for the load area (and not for the run area either). git-svn-id: svn://svn.cc65.org/cc65/trunk@603 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
083f0aee44
commit
724262fb90
@ -109,6 +109,14 @@ static unsigned BinWriteExpr (ExprNode* E, int Signed, unsigned Size,
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
static void PrintBoolVal (const char* Name, int B)
|
||||||
|
/* Print a boolean value for debugging */
|
||||||
|
{
|
||||||
|
printf (" %s = %s\n", Name, B? "true" : "false");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
static void BinWriteMem (BinDesc* D, Memory* M)
|
static void BinWriteMem (BinDesc* D, Memory* M)
|
||||||
/* Write the segments of one memory area to a file */
|
/* Write the segments of one memory area to a file */
|
||||||
{
|
{
|
||||||
@ -134,6 +142,14 @@ static void BinWriteMem (BinDesc* D, Memory* M)
|
|||||||
S->Load == M && /* LOAD segment */
|
S->Load == M && /* LOAD segment */
|
||||||
S->Seg->Dumped == 0; /* Not already written */
|
S->Seg->Dumped == 0; /* Not already written */
|
||||||
|
|
||||||
|
/* Output the DoWrite flag for debugging */
|
||||||
|
if (Verbose > 1) {
|
||||||
|
PrintBoolVal ("bss", S->Flags & SF_BSS);
|
||||||
|
PrintBoolVal ("LoadArea", S->Load == M);
|
||||||
|
PrintBoolVal ("Dumped", S->Seg->Dumped);
|
||||||
|
PrintBoolVal ("DoWrite", DoWrite);
|
||||||
|
}
|
||||||
|
|
||||||
/* Check if we would need an alignment */
|
/* Check if we would need an alignment */
|
||||||
if (S->Seg->Align > S->Align) {
|
if (S->Seg->Align > S->Align) {
|
||||||
/* Segment itself requires larger alignment than configured
|
/* Segment itself requires larger alignment than configured
|
||||||
@ -175,7 +191,11 @@ static void BinWriteMem (BinDesc* D, Memory* M)
|
|||||||
} else if (M->Flags & MF_FILL) {
|
} else if (M->Flags & MF_FILL) {
|
||||||
WriteMult (D->F, M->FillVal, S->Seg->Size);
|
WriteMult (D->F, M->FillVal, S->Seg->Size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* If this was the load memory area, mark the segment as dumped */
|
||||||
|
if (S->Load == M) {
|
||||||
S->Seg->Dumped = 1;
|
S->Seg->Dumped = 1;
|
||||||
|
}
|
||||||
|
|
||||||
/* Calculate the new address */
|
/* Calculate the new address */
|
||||||
Addr += S->Seg->Size;
|
Addr += S->Seg->Size;
|
||||||
|
@ -1397,15 +1397,25 @@ void CfgWriteTarget (void)
|
|||||||
} else {
|
} else {
|
||||||
|
|
||||||
/* No output file. Walk through the list and mark all segments
|
/* No output file. Walk through the list and mark all segments
|
||||||
* assigned to the memory areas in this file as dumped.
|
* loading into these memory areas in this file as dumped.
|
||||||
*/
|
*/
|
||||||
M = F->MemList;
|
M = F->MemList;
|
||||||
while (M) {
|
while (M) {
|
||||||
|
|
||||||
|
MemListNode* N;
|
||||||
|
|
||||||
|
/* Debugging */
|
||||||
|
if (Verbose > 1) {
|
||||||
|
printf ("Skipping `%s'...\n", M->Name);
|
||||||
|
}
|
||||||
|
|
||||||
/* Walk throught the segments */
|
/* Walk throught the segments */
|
||||||
MemListNode* N = M->SegList;
|
N = M->SegList;
|
||||||
while (N) {
|
while (N) {
|
||||||
/* Mark the segment as dumped */
|
if (N->Seg->Load == M) {
|
||||||
|
/* Load area - mark the segment as dumped */
|
||||||
N->Seg->Seg->Dumped = 1;
|
N->Seg->Seg->Dumped = 1;
|
||||||
|
}
|
||||||
|
|
||||||
/* Next segment node */
|
/* Next segment node */
|
||||||
N = N->Next;
|
N = N->Next;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user