There is a function to output instructions supported by the processor to the console. Help to remake that was saved in a file.
auto& outstream = std::cout; auto support_message = [&outstream](std::string isa_feature, bool is_supported) { outstream << isa_feature << (is_supported ? " supported" : " not supported") << std::endl; };
outstreamnot ascout, but as an openofstream... Better yet, pass the link toostream, where to write, as a parameter. - Harry