mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-07-01 20:40:27 +03:00
t
This commit is contained in:
13
X86Disassembler/Analysers/AsmFunction.cs
Normal file
13
X86Disassembler/Analysers/AsmFunction.cs
Normal file
@ -0,0 +1,13 @@
|
||||
namespace X86Disassembler.Analysers;
|
||||
|
||||
public class AsmFunction
|
||||
{
|
||||
public ulong Address { get; set; }
|
||||
|
||||
public List<InstructionBlock> Blocks { get; set; }
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return $"Function at {Address:X8}\n{string.Join("\n", Blocks.Select(x => $"\t{x}"))}";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user