From f3a02f93e175ac5c509aa6e135653a4f58af32ce Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Fri, 20 Feb 2015 20:51:35 -0500 Subject: Very early disassembly view rendering --- architecture.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'architecture.cpp') 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) { -- cgit v1.3.1