0
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-07-01 20:40:27 +03:00
This commit is contained in:
bird_egop
2025-04-18 16:29:53 +03:00
parent 23fb497e0a
commit 7eead316cd
8 changed files with 296 additions and 366 deletions

View 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}"))}";
}
}