13 lines
539 B
C++
13 lines
539 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
using BinaryData = std::vector<std::uint32_t>;
|
|
|
|
BinaryData ParseFile(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); |