diff options
author | Oxore <oxore@protonmail.com> | 2023-05-20 13:15:29 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2023-05-20 13:15:29 +0300 |
commit | 935f386f61b63267bd6516a1888cf939b8eef238 (patch) | |
tree | 06a3035d555b955bc62397564c65e87a2acea41f /common.h | |
parent | bb15aa39feebd658181068104a7c57b5a122a70f (diff) |
Make more `reloc` to `ref` renaming
Diffstat (limited to 'common.h')
-rw-r--r-- | common.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,8 +12,8 @@ struct Settings { bool raw_data_comment{}; }; -constexpr unsigned kRelocRelMask = 1; -constexpr unsigned kRelocAbsMask = 2; +constexpr unsigned kRefRelMask = 1; +constexpr unsigned kRefAbsMask = 2; constexpr size_t kInstructionSizeStepBytes = 2; constexpr size_t kRomSizeBytes = 4 * 1024 * 1024; constexpr size_t kDisasmMapSizeElements = kRomSizeBytes / kInstructionSizeStepBytes; |