0
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-07-01 12:40:25 +03:00
Files
ParkanPlayground/X86Disassembler/Analysers/AsmFunction.cs

13 lines
310 B
C#
Raw Normal View History

2025-04-18 16:29:53 +03:00
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}"))}";
}
}