summaryrefslogtreecommitdiff
path: root/architecture.cpp
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2015-02-20 20:51:35 -0500
committerRusty Wagner <rusty@vector35.com>2015-02-20 20:51:35 -0500
commitf3a02f93e175ac5c509aa6e135653a4f58af32ce (patch)
tree6c35ca238e6caa56858dc7859b38bb16987d6e1b /architecture.cpp
parentf2b794bf897a2e208407bf5f4a13f4f813531e68 (diff)
Very early disassembly view rendering
Diffstat (limited to 'architecture.cpp')
-rw-r--r--architecture.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/architecture.cpp b/architecture.cpp
index 0d010d0e..576a14e3 100644
--- a/architecture.cpp
+++ b/architecture.cpp
@@ -20,6 +20,11 @@ void InstructionInfo::AddBranch(BNBranchType type, uint64_t target)
}
+InstructionTextToken::InstructionTextToken(): type(TextToken), value(0)
+{
+}
+
+
InstructionTextToken::InstructionTextToken(BNInstructionTextTokenType t, const std::string& txt, uint64_t val) :
type(t), text(txt), value(val)
{