mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-07-01 04:40:25 +03:00
13 lines
310 B
C#
13 lines
310 B
C#
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}"))}";
|
|
}
|
|
} |