Beispiel #1
0
 internal SymbolInstructionInfo(int codeSize, string hexBytes, Code code, TestSymbolResolver symbolResolver)
 {
     CodeSize       = codeSize;
     HexBytes       = hexBytes;
     Code           = code;
     InitOptions    = initOptionsDefault;
     InitDecoder    = initDecoderDefault;
     SymbolResolver = symbolResolver;
 }
Beispiel #2
0
 internal SymbolInstructionInfo(int codeSize, string hexBytes, Code code, Action <FormatterOptions> enableOption, TestSymbolResolver symbolResolver)
 {
     CodeSize       = codeSize;
     HexBytes       = hexBytes;
     Code           = code;
     InitOptions    = enableOption;
     InitDecoder    = initDecoderDefault;
     SymbolResolver = symbolResolver;
 }
Beispiel #3
0
 internal SymbolInstructionInfo(int bitness, string hexBytes, Code code, TestSymbolResolver symbolResolver)
 {
     Bitness        = bitness;
     HexBytes       = hexBytes;
     Code           = code;
     InitOptions    = initOptionsDefault;
     InitDecoder    = initDecoderDefault;
     SymbolResolver = symbolResolver;
 }