summaryrefslogtreecommitdiff
path: root/common.h
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2023-04-24 01:13:28 +0300
committerOxore <oxore@protonmail.com>2023-04-24 01:13:28 +0300
commitaf46d6991ceb719ac59d6218791c41fa3978e695 (patch)
treec82f390402e0000a5a2d9bc88045b91a8810213a /common.h
parent30f24b179ced1bf47deb9edfbd4128f16dad42dd (diff)
Impl some feature flags
Diffstat (limited to 'common.h')
-rw-r--r--common.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/common.h b/common.h
index 5988a29..34ba934 100644
--- a/common.h
+++ b/common.h
@@ -1,6 +1,12 @@
#pragma once
struct Settings {
+ bool marks{};
+ bool rel_marks{};
+ bool abs_marks{};
+ bool xrefs_to{};
+ bool xrefs_from{};
+ bool raw_data_comment{};
};
constexpr size_t kInstructionSizeStepBytes = 2;