/* * Copyright (c) 2020 Romain Dolbeau * MIT License * See the LICENSE file at the top level of this software distribution for details. */ #ifndef __UNPARSE_HPP__ #define __UNPARSE_HPP__ #include "inst.hpp" void unparse(std::ostream& output, const std::string prefix, const std::set instructions, std::map semantics, std::map em_widths, std::map mem_semantics, std::vector prologues, std::vector extras, bool wide); #endif // __UNPARSE_HPP__