0
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-06-19 16:08:02 +03:00
This commit is contained in:
bird_egop
2025-04-13 03:56:39 +03:00
parent 611dce32e5
commit b215908d76
5 changed files with 57 additions and 29 deletions

View File

@ -74,6 +74,16 @@ public class Program
// Disassemble all instructions
var instructions = disassembler.Disassemble();
var unknownIndex = instructions.FindIndex(
x => x.ToString()
.Contains("??") || x.ToString()
.Contains("TODO")
);
if (unknownIndex != -1)
{
_ = 5;
}
// Print the first 100 instructions
int count = Math.Min(100, instructions.Count);