mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-12-09 15:21:20 +04:00
13 lines
338 B
C#
13 lines
338 B
C#
namespace X86DisassemblerTests;
|
|
|
|
public class JsonInstructionEntry
|
|
{
|
|
public string RawBytes { get; set; } = "";
|
|
public List<JsonDisassembledInstruction> Disassembled { get; set; } = [];
|
|
}
|
|
|
|
public class JsonDisassembledInstruction
|
|
{
|
|
public string Mnemonic { get; set; } = "";
|
|
public string Operands { get; set; } = "";
|
|
} |