Remove duplicated EMPTY label in case no bank memory is used

This commit is contained in:
rlewicki
2022-10-25 23:38:03 +02:00
committed by Eldred Habert
parent 0e67298dff
commit 92b2ac3c8c

View File

@@ -479,11 +479,11 @@ static uint16_t writeMapBank(struct SortedSections const *sectList,
uint16_t bankEndAddr = sectionTypeInfo[type].startAddr + sectionTypeInfo[type].size;
writeEmptySpace(prevEndAddr, bankEndAddr);
if (used == 0) {
fputs("\tEMPTY\n\n", mapFile);
} else {
writeEmptySpace(prevEndAddr, bankEndAddr);
uint16_t slack = sectionTypeInfo[type].size - used;
fprintf(mapFile, "\tTOTAL EMPTY: $%04" PRIx16 " byte%s\n\n", slack,