From cfb2d1a8d8fbe6109197e45e1390c513c3630f21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Henrik=20Sk=C3=A5rstedt?= Date: Sat, 20 Oct 2018 18:33:19 -0700 Subject: [PATCH] Fixed exporting code to addresses below the stack --- x65.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/x65.cpp b/x65.cpp index e69f0d3..4e3d201 100644 --- a/x65.cpp +++ b/x65.cpp @@ -1857,7 +1857,8 @@ void Asm::SetSection(strref name, int address) { if (allSections.size()==allSections.capacity()) { allSections.reserve(allSections.size()+16); } Section newSection(name, address); // don't compile over zero page and stack frame (may be bad assumption) - if (address<0x200) { newSection.SetDummySection(true); } + if (address<0x200) { + newSection.SetDummySection(true); } allSections.push_back(newSection); current_section = &allSections[allSections.size()-1]; } @@ -2132,7 +2133,7 @@ uint8_t* Asm::BuildExport(strref append, int &file_size, int &addr) { for (std::vector
::iterator i = allSections.begin(); i != allSections.end(); ++i) { if (i->type == ST_REMOVED) { continue; } if (((!append && !i->export_append) || append.same_str_case(i->export_append)) && i->type != ST_ZEROPAGE) { - if (i->start_address>=0x200&&i->size()>0) { + if (i->size()>0) { memcpy(output+i->start_address-start_address, i->output, i->size()); } }