-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathBNInstructionTextLine.cs
More file actions
57 lines (46 loc) · 1.06 KB
/
BNInstructionTextLine.cs
File metadata and controls
57 lines (46 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
using Microsoft.Win32.SafeHandles;
namespace BinaryNinja
{
[StructLayout(LayoutKind.Sequential)]
internal unsafe struct BNInstructionTextLine
{
/// <summary>
/// BNInstructionTextToken* tokens
/// </summary>
public IntPtr tokens;
/// <summary>
/// uint64_t count
/// </summary>
public ulong count;
}
public sealed class InstructionTextLine
{
public ulong Address { get; } = 0;
public byte[] Data { get; } = Array.Empty<byte>();
public InstructionTextToken[] Tokens { get; } = Array.Empty<InstructionTextToken>();
public InstructionTextLine()
{
}
public InstructionTextLine(
ulong address,
byte[] data,
InstructionTextToken[] tokens
)
{
this.Tokens = tokens;
}
public override string ToString()
{
StringBuilder builder = new StringBuilder();
foreach (InstructionTextToken token in Tokens)
{
builder.Append(token.Text);
}
return builder.ToString();
}
}
}