mirror of
https://github.com/ksherlock/x65.git
synced 2025-04-05 21:38:45 +00:00
fixed Kick Assembler Debugdata output with symbols relative to sections & section naming
This commit is contained in:
parent
5339e5c789
commit
73eaa45daa
7
x65.cpp
7
x65.cpp
@ -7023,10 +7023,13 @@ bool Asm::SourceDebugExport(strref filename) {
|
||||
if (i->name.same_str("debugbreak")) { continue; }
|
||||
uint32_t value = (uint32_t)i->value;
|
||||
strref sectName;
|
||||
uint16_t section = i->orig_section;
|
||||
int16_t section = i->section;
|
||||
int16_t orig_section = i->orig_section;
|
||||
if (size_t(section) < allSections.size()) {
|
||||
value += allSections[section].start_address;
|
||||
sectName = allSections[section].name;
|
||||
}
|
||||
if (size_t(orig_section) < allSections.size()) {
|
||||
sectName = allSections[orig_section].name;
|
||||
}
|
||||
fprintf(f, "\t\t" STRREF_FMT ",$%04x," STRREF_FMT ",0,0,0,0,0\n", STRREF_ARG(sectName), value, STRREF_ARG(i->name));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user