mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-17 17:36:44 +00:00
kern: fix debug build
This commit is contained in:
parent
c8e73003f3
commit
117da7ff37
1 changed files with 23 additions and 1 deletions
|
@ -15,6 +15,28 @@
|
||||||
*/
|
*/
|
||||||
#include <mesosphere.hpp>
|
#include <mesosphere.hpp>
|
||||||
|
|
||||||
|
/* <stratosphere/rocrt/rocrt.hpp> */
|
||||||
|
namespace ams::rocrt {
|
||||||
|
|
||||||
|
constexpr inline const u32 ModuleHeaderVersion = util::FourCC<'M','O','D','0'>::Code;
|
||||||
|
|
||||||
|
struct ModuleHeader {
|
||||||
|
u32 signature;
|
||||||
|
u32 dynamic_offset;
|
||||||
|
u32 bss_start_offset;
|
||||||
|
u32 bss_end_offset;
|
||||||
|
u32 exception_info_start_offset;
|
||||||
|
u32 exception_info_end_offset;
|
||||||
|
u32 module_offset;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct ModuleHeaderLocation {
|
||||||
|
u32 pad;
|
||||||
|
u32 header_offset;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
namespace ams::kern::arch::arm64 {
|
namespace ams::kern::arch::arm64 {
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
@ -657,7 +679,7 @@ namespace ams::kern::arch::arm64 {
|
||||||
return PrintAddressWithModuleName(address, has_module_name, module_name, base_address);
|
return PrintAddressWithModuleName(address, has_module_name, module_name, base_address);
|
||||||
}
|
}
|
||||||
|
|
||||||
dyn_address = module.start_address + mod_offset + temp_32;
|
dyn_address = base_address + mod_offset + temp_32;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Locate tables inside .dyn. */
|
/* Locate tables inside .dyn. */
|
||||||
|
|
Loading…
Reference in a new issue