This commit is contained in:
1 1
2020-12-31 15:35:46 +03:00
commit cd5ffe60a5
161 changed files with 20185 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
#include <stdint.h>
namespace iw5mp_addresses
{
namespace sections
{
constexpr uint32_t text_start = 0x00401000;
constexpr uint32_t text_end = text_start + 0x00301000;
constexpr uint32_t data_start = text_end;
constexpr uint32_t data_end = data_start + 0x06000000;
bool IsAddressPlacedAfterDataEnd(uint32_t address);
}
};