mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-06-19 16:08:02 +03:00
fixups
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user