add reversing
This commit is contained in:
7
src/IO.h
7
src/IO.h
@@ -7,6 +7,7 @@ using BinaryData = std::vector<std::uint32_t>;
|
||||
|
||||
BinaryData ParseFile(const std::string& fileName);
|
||||
|
||||
void OutputFileBinary(const BinaryData& a_Data, const std::string& fileName);
|
||||
void OutputFileIntegers(const BinaryData& a_Data, const std::string& fileName);
|
||||
void OutputFileBinIntegers(const BinaryData& a_Data, const std::string& fileName);
|
||||
void OutputFileBinary(BinaryData& a_Data, const std::string& fileName, bool a_Reverse);
|
||||
void OutputFileIntegers(BinaryData& a_Data, const std::string& fileName, bool a_Reverse);
|
||||
void OutputFileBinIntegers(BinaryData& a_Data, const std::string& fileName, bool a_Reverse);
|
||||
void OutputFileLogisim(BinaryData& a_Data, const std::string& fileName, const std::string& a_Header, bool a_Reverse);
|
||||
Reference in New Issue
Block a user