VexRiscvBPluginGenerator/unparse.hpp
2020-11-05 09:26:16 +01:00

16 lines
472 B
C++

/*
* Copyright (c) 2020 Romain Dolbeau <romain.dolbeau@european-processor-initiative.eu>
* MIT License
* See the LICENSE file at the top level of this software distribution for details.
*/
#ifndef __UNPARSE_HPP__
#define __UNPARSE_HPP__
void unparse(std::ostream& output,
const std::string prefix,
const std::set<const instruction*> instructions,
std::map<std::string,std::string> semantics,
std::string prologue);
#endif // __UNPARSE_HPP__