Share bss section with planschi section

This commit is contained in:
2023-08-27 02:43:59 +02:00
parent 2c3e0d2a59
commit 83cdade874
8 changed files with 87 additions and 84 deletions

View File

@@ -7,7 +7,7 @@
#include "../cd_file_types.hpp"
#include "file_processor.hpp"
extern "C" uint32_t __heap_base;
extern "C" uint32_t __heap_start;
namespace JabyEngine {
class CDFileProcessor {
@@ -20,7 +20,7 @@ namespace JabyEngine {
size_t sector_count = 0;
static constexpr BufferConfiguration new_default() {
return {&__heap_base, BufferConfiguration::MediumSectorCount};
return {&__heap_start, BufferConfiguration::MediumSectorCount};
}
};